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
{{ message }}
This repository was archived by the owner on Nov 20, 2019. It is now read-only.
I'm not sure whether or not it is intended for paths to be encoded prior to passing to fly.s3 functions, but I'm having trouble getting this to work:
bucket add BucketFile("sample/test file.txt", "text/plain", content, Some(PRIVATE)) // will not work without URL encoding
bucket add BucketFile("sample/test&;-file.txt", "text/plain", content, Some(PRIVATE)) // works without URL encoding
bucket add BucketFile("sample/test & file.txt", "text/plain", content, Some(PRIVATE)) // will not work either way, URL encoding the path first will return SignatureDoesNotMatch
bucket add BucketFile("sample/test+&+file.txt", "text/plain", content, Some(PRIVATE)) // this will work (changing only the spaces), but is a hack
The text was updated successfully, but these errors were encountered:
I'm not sure whether or not it is intended for paths to be encoded prior to passing to fly.s3 functions, but I'm having trouble getting this to work:
The text was updated successfully, but these errors were encountered: