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
I'm getting errors similar to closed issue #592 with '#' instead of unicode
using Julia = 1.10.0
I have the same file uploaded to 2 different locations in a bucket; one of the locations has the "#" in the containing folder.
This succeeds:
S3.get_object(mybucket, "clean/path/test.csv")
These BOTH fail:
S3.get_object(mybucket, "path/with#/test.csv")
--> Signature does not match
S3.get_object(mybucket, URIs.escapepath("path/with#/test.csv"))
--> NoSuchKey
The text was updated successfully, but these errors were encountered:
I'm getting errors similar to closed issue #592 with '#' instead of unicode
using Julia = 1.10.0
I have the same file uploaded to 2 different locations in a bucket; one of the locations has the "#" in the containing folder.
This succeeds:
S3.get_object(mybucket, "clean/path/test.csv")
These BOTH fail:
S3.get_object(mybucket, "path/with#/test.csv")
--> Signature does not match
S3.get_object(mybucket, URIs.escapepath("path/with#/test.csv"))
--> NoSuchKey
The text was updated successfully, but these errors were encountered: