Skip to content

Commit f24655c

Browse files
Merge pull request #6871 from oliver-sanders/cat-log-process-poll-frequency
cat-log: reduce process poll frequency
2 parents dd5c77c + f6bf5ba commit f24655c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cylc/flow/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def watch_and_kill(proc):
8484
"""Kill proc if my PPID (etc.) changed - e.g. ssh connection dropped."""
8585
gpa = get_proc_ancestors()
8686
while True:
87-
sleep(0.5)
87+
sleep(60)
8888
if proc.poll() is not None:
8989
break
9090
if get_proc_ancestors() != gpa:

0 commit comments

Comments
 (0)