txaws icon indicating copy to clipboard operation
txaws copied to clipboard

S3 client cannot retrieve objects for keys starting with /

Open exarkun opened this issue 8 years ago • 0 comments

>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="baz").get_encoded_url()
'http://foo/bar/baz'
>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="/baz").get_encoded_url()
'http://foo/bar/baz'
>>> s3_url_context(AWSServiceEndpoint("http://foo/"), bucket="bar", object_name="//baz").get_encoded_url()
'http://foo/bar//baz'
>>> 

exarkun avatar Jul 11 '17 13:07 exarkun