Adrian D.

Results 172 comments of Adrian D.

Hello @EpicWink, thanks for reaching out. I have replicated by calling the delete_objects API and I got the same issue. I have reached out to the S3 Service Team in...

Retrying the repro code: ``` import boto3 boto3.set_stream_logger('') client = boto3.client("s3") response = client.delete_objects( Bucket="bucket-name", Delete={"Objects": [{"Key": "bar/baz", "ETag": '"7bcf[REDACTED]"'}]}, ) print(response) ``` The delete operation succeeded with ETAG. Checking...

Hello @afranken, thanks for reaching out. Looking at responses, some may have 100 Continue (2 Strings), 100-Continue (1 String) or just 100. Looking through RFCs and IETFs, it seemed that...

Hello @afranken, thanks for the patience. The change can be implemented, although we don't have a time frame on the release. Moving forward, please check our changelogs for updates (https://raw.githubusercontent.com/boto/boto3/develop/CHANGELOG.rst...

Hello and thanks for brining this up. I was able to reproduce the issue and have seen that it retries after hitting Ctrl+C. I will present this to the team...

PR and merged: https://github.com/boto/botocore/pull/3552 . Please update to the next version of Botocore. Thank you.

Hello @jakkdl, thanks for reaching out. I have tested the code and confirmed it does re-use the same case object between test runs, causing failures when tests are parametrized or...

Hi @jakkdl, thanks for the patience. Could you please provide your use case and also how you are implementing or reproducing this? Also, please add boto3.set_stream_logger('') for logs too. Thanks.

Thanks for getting back. The test suite helps us validate botocore functionality, and since botocore is working as expected, we won't need to make any adjustments at this time.