You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/storage/src/simcore_service_storage/api/rest/_files.py
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,6 @@ async def upload_file(
153
153
file_id: StorageFileID,
154
154
request: Request,
155
155
):
156
-
file_id=urllib.parse.unquote(f"{file_id}")
157
156
"""creates upload file links:
158
157
159
158
This function covers v1 and v2 versions of the handler.
@@ -182,7 +181,7 @@ async def upload_file(
182
181
Use-case v2.2: if query.file_size > 0 and query.link_type=presigned or None, returns 1 or more presigned links depending on the file size (limited to a single 5TB file)
183
182
Use-case v2.3: if query.link_type=s3 and query.file_size>=0, returns a single s3 direct link (limited to a single 5TB file)
0 commit comments