Skip to content

Commit

Permalink
minor fix according to PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Sep 19, 2023
1 parent 701e69c commit 4ea277a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/storage/src/simcore_service_storage/s3_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ async def complete_multipart_upload(
for part in uploaded_parts
]
},
"ChecksumSHA256": None if sha256_checksum is None else str(sha256_checksum),
"ChecksumSHA256": sha256_checksum,
}
response = await self.client.complete_multipart_upload(
**{k: v for k, v in inputs.items() if v is not None}
Expand Down

0 comments on commit 4ea277a

Please sign in to comment.