We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2732f53 commit 7bdd9e4Copy full SHA for 7bdd9e4
cylc/flow/workflow_files.py
@@ -424,7 +424,8 @@ def _is_process_running(
424
out, err = proc.communicate(timeout=10, input=metric)
425
except TimeoutExpired:
426
raise CylcError(
427
- f'Cannot determine whether workflow is running on {host}.'
+ f'Attempt to determine whether workflow is running on {host}'
428
+ ' timed out after 10 seconds.'
429
)
430
431
if proc.returncode == 2:
@@ -435,7 +436,7 @@ def _is_process_running(
435
436
error = False
437
if proc.returncode:
438
# the psutil call failed in some other way e.g. network issues
- LOG.debug(
439
+ LOG.warning(
440
f'$ {cli_format(cmd)} # returned {proc.returncode}\n{err}'
441
442
error = True
0 commit comments