Skip to content

Commit

Permalink
Merge pull request #2045 from matthewrmshin/fix-rose-suite-scan
Browse files Browse the repository at this point in the history
rose suite-scan: fix `--comms-timeout` option
  • Loading branch information
arjclark authored Jan 26, 2017
2 parents a60755c + 4987853 commit 96e672f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/rose/suite_engine_procs/cylc.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def scan(self, hosts=None, timeout=None):
hosts = ["localhost"]
if timeout is None:
timeout = self.TIMEOUT
cmd = ["cylc", "scan", "--pyro-timeout=%s" % timeout] + list(hosts)
cmd = ["cylc", "scan", "--comms-timeout=%s" % timeout] + list(hosts)
proc = self.popen.run_bg(*cmd)
results = {}
exceptions = []
Expand Down

0 comments on commit 96e672f

Please sign in to comment.