File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -447,7 +447,11 @@ def stderr_stdout_log_path(
447
447
with runtimeContext .workflow_eval_lock :
448
448
self .output_callback (outputs , processStatus )
449
449
450
- if runtimeContext .rm_tmpdir and self .stagedir is not None and os .path .exists (self .stagedir ):
450
+ if (
451
+ runtimeContext .rm_tmpdir
452
+ and self .stagedir is not None
453
+ and os .path .exists (self .stagedir )
454
+ ):
451
455
_logger .debug (
452
456
"[job %s] Removing input staging directory %s" ,
453
457
self .name ,
@@ -875,7 +879,6 @@ def docker_monitor(
875
879
kill_switch : threading .Event ,
876
880
) -> None :
877
881
"""Record memory usage of the running Docker container. Terminate if kill_switch is activated."""
878
-
879
882
ks_tm : "Optional[Timer]" = None
880
883
cid : Optional [str ] = None
881
884
You can’t perform that action at this time.
0 commit comments