Skip to content

Commit

Permalink
rsync timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
datamel committed Sep 14, 2020
1 parent 21d294e commit 8fbf0d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cylc/flow/task_remote_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
get_host_from_platform,
get_install_target_from_platform)
from cylc.flow.remote import construct_platform_ssh_cmd
from cylc.flow.loggingutil import FileInstallLogFileHandler

REC_COMMAND = re.compile(r'(`|\$\()\s*(.*)\s*([`)])$')
REMOTE_INIT_FAILED = 'REMOTE INIT FAILED'
Expand Down Expand Up @@ -314,7 +313,7 @@ def _remote_init_callback(
stderrpipe=True,
universal_newlines=True)

out, err = process.communicate()
out, err = process.communicate(timeout=600)
install_target = platform['install target']
if out:
LOG.info(
Expand Down

0 comments on commit 8fbf0d1

Please sign in to comment.