Skip to content

Commit df488dd

Browse files
authored
Fixes default (#1640)
Fixes error while copying data in storage service.
1 parent 7c17e52 commit df488dd

File tree

1 file changed

+1
-1
lines changed
  • services/storage/src/simcore_service_storage

1 file changed

+1
-1
lines changed

services/storage/src/simcore_service_storage/dsm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ async def deep_copy_project_simcore_s3(
674674

675675
# Step 2: List all references in outputs that point to datcore and copy over
676676
for node_id, node in destination_project["workbench"].items():
677-
outputs = node.get("outputs", [])
677+
outputs: Dict = node.get("outputs", {})
678678
for _output_key, output in outputs.items():
679679
if "store" in output and output["store"] == DATCORE_ID:
680680
src = output["path"]

0 commit comments

Comments
 (0)