Skip to content

Commit e9e8c18

Browse files
authored
Merge branch 'master' into feature/more-e2e
2 parents a70739f + d0b46e4 commit e9e8c18

File tree

1 file changed

+1
-1
lines changed
  • services/sidecar/src/simcore_service_sidecar

1 file changed

+1
-1
lines changed

services/sidecar/src/simcore_service_sidecar/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ async def _process_task_input(self, port: node_ports_v2.Port, input_ports: Dict)
159159
)
160160
# check if the file is a zip, in that case extract all if the service does not expect a zip file
161161
if zipfile.is_zipfile(final_path) and (
162-
str(port.type) != "data:application/zip"
162+
str(port.property_type) != "data:application/zip"
163163
):
164164
with zipfile.ZipFile(final_path, "r") as zip_obj:
165165
zip_obj.extractall(final_path.parents[0])

0 commit comments

Comments
 (0)