Skip to content

Commit

Permalink
Merge pull request #2842 from freenas/issues/85012
Browse files Browse the repository at this point in the history
tkt-85012: Correctly write multiple isns servers
  • Loading branch information
sonicaj committed Apr 4, 2019
2 parents 4d85709 + d404f4a commit ba8fc8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewared/middlewared/etc_files/ctld.py
Expand Up @@ -116,7 +116,7 @@ def main(middleware):
node = middleware.call_sync('failover.node')

if gconf.iscsi_isns_servers:
for server in gconf.iscsi_isns_servers.split(' '):
for server in gconf.iscsi_isns_servers.split():
addline('isns-server "%s"\n\n' % server)

# Generate the portal-group section
Expand Down

0 comments on commit ba8fc8b

Please sign in to comment.