Skip to content

Commit fa67d05

Browse files
committed
@sanderegg comments
1 parent b74b230 commit fa67d05

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

services/sidecar/src/simcore_service_sidecar/executor.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ async def preprocess(self):
117117
self.shared_folders.create()
118118
host_name = config.SIDECAR_HOST_HOSTNAME_PATH.read_text()
119119
await self._post_messages(LogType.LOG, f"[sidecar]Running on {host_name}")
120-
results = await logged_gather(
121-
self._process_task_inputs(), self._pull_image(), reraise=True
122-
)
120+
results = await logged_gather(self._process_task_inputs(), self._pull_image())
123121
await self._write_input_file(results[0])
124122
log.debug("Pre-Processing Pipeline DONE")
125123

@@ -241,13 +239,10 @@ async def _pull_image(self):
241239
if "io.simcore.integration-version" in image_cfg["Config"]["Labels"]:
242240
self.integration_version = version.parse(
243241
json.loads(
244-
image_cfg["Config"]["Labels"][
245-
"io.simcore.integration-version"
246-
]
242+
image_cfg["Config"]["Labels"]["io.simcore.integration-version"]
247243
)["integration-version"]
248244
)
249245

250-
251246
async def _create_container_config(self, docker_image: str) -> Dict:
252247
# NOTE: Env/Binds for log folder is only necessary for integraion "0"
253248
env_vars = [

services/web/server/src/simcore_service_webserver/computation_api.py

-1
Original file line numberDiff line numberDiff line change
@@ -448,4 +448,3 @@ async def get_task_output(
448448
comp_task = await result.fetchone()
449449
if comp_task:
450450
return comp_task.outputs
451-
return None

0 commit comments

Comments
 (0)