Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MC/bin/o2_dpg_workflow_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ def submit(self, tid, nice):
self.procstatus[tid]='Running'
if args.dry_run:
drycommand="echo \' " + str(self.scheduling_iteration) + " : would do " + str(self.workflowspec['stages'][tid]['name']) + "\'"
return subprocess.Popen(['/bin/bash','-c',drycommand], cwd=workdir)
return psutil.Popen(['/bin/bash','-c',drycommand], cwd=workdir)

taskenv = os.environ.copy()
# apply specific (non-default) software version, if any
Expand Down
Loading