-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent Location in AWS.S3.ManagedUpload callback #1158
Comments
@fedot We'll have to see what format the other SDKs return |
Hi! Just wanted to mention that we've noted the same issue. We're working around it by rebuilding the url from the |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
AWS.S3.ManagedUpload
callback may getLocation
property with url which has URI encodedpathname
(/
replaced by%2F
) if it's a multi-part upload.This is response for a 6mb file upload:
s3.upload(params).send(...)
This is response for uploading same file but with only one part:
s3.upload(params,{partSize: 10 * 1024 * 1024, queueSize:1}).send(...)
The text was updated successfully, but these errors were encountered: