Skip to content

Commit f6bf5ba

Browse files
cat-log: reduce process poll frequency
1 parent a4111d0 commit f6bf5ba

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)