aws-sdk-perl icon indicating copy to clipboard operation
aws-sdk-perl copied to clipboard

S3 URI issue fixed

Open byterock opened this issue 6 years ago • 0 comments

I finally got a fix in for the URI bug where if we had

"/{Bucket}?analytics" or alike

and added a param the above was clobbered.

My first fix was a change to boto

"/{Bucket}?analytics&id={Id}",

where I could use the above.

I figured out a work around for that so the changes to boto are not needed

this commit https://github.com/byterock/aws-sdk-perl/commit/08d44a3f1588669b2506f7a0b2911ad3d1ff8921 on my

https://github.com/byterock/aws-sdk-perl/tree/s3ObjectTagging

branch

All I did was take both the ParamInQuery and ParamInURI, change the url template to take any ParamInQuery values and things work fine.

I also checked in a new test case for the requests 09_requests.t.

So There are No boto changes now needed for S3

getting close to getting rid of that warning

byterock avatar Nov 12 '19 00:11 byterock