You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run_phase() has stanzas for process.returncode in [0, 1, >=100] but other values fall through without any action or logging. For robustness it's probably wise to catch other values and log a message. Particularly process.returncode<0 which indicates the subprocess was killed by a signal.
The text was updated successfully, but these errors were encountered:
run_phase()
has stanzas forprocess.returncode
in[0, 1, >=100]
but other values fall through without any action or logging. For robustness it's probably wise to catch other values and log a message. Particularly process.returncode<0
which indicates the subprocess was killed by a signal.The text was updated successfully, but these errors were encountered: