Skip to content

Commit 92e8ca9

Browse files
committed
launching tasks expect single command string instead of suprocess-style lists
1 parent b3db297 commit 92e8ca9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples-proposed/024-aggregated-compute-ensemble/instance_component.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def step(self, timestamp: float = 0.0, **keywords):
5252
f'in {working_dir}')
5353
run_id = None
5454
try:
55+
cmd = ' '.join(cmd) # need one big ole string for executing tasks
5556
run_id = self.services.launch_task(nproc=2,
5657
working_dir=working_dir,
5758
binary=cmd)

0 commit comments

Comments
 (0)