We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c17e52 commit df488ddCopy full SHA for df488dd
services/storage/src/simcore_service_storage/dsm.py
@@ -674,7 +674,7 @@ async def deep_copy_project_simcore_s3(
674
675
# Step 2: List all references in outputs that point to datcore and copy over
676
for node_id, node in destination_project["workbench"].items():
677
- outputs = node.get("outputs", [])
+ outputs: Dict = node.get("outputs", {})
678
for _output_key, output in outputs.items():
679
if "store" in output and output["store"] == DATCORE_ID:
680
src = output["path"]
0 commit comments