We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The v1 of list_objects can be the cause of some consistency problems. See this answer for context: https://stackoverflow.com/a/67412931/1692709
We currently use list_objects for non recursive cases:
list_objects
cloudpathlib/cloudpathlib/s3/s3client.py
Line 147 in 80f7afd
We use the bucket filter in recursive cases:
Line 136 in 80f7afd
We should replace both code paths with self.client.get_paginator('list_objects_v2'):
self.client.get_paginator('list_objects_v2')
Here's the boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.list_objects_v2
The text was updated successfully, but these errors were encountered:
Closed by #302
Sorry, something went wrong.
No branches or pull requests
The v1 of list_objects can be the cause of some consistency problems. See this answer for context:
https://stackoverflow.com/a/67412931/1692709
We currently use
list_objects
for non recursive cases:cloudpathlib/cloudpathlib/s3/s3client.py
Line 147 in 80f7afd
We use the bucket filter in recursive cases:
cloudpathlib/cloudpathlib/s3/s3client.py
Line 136 in 80f7afd
We should replace both code paths with
self.client.get_paginator('list_objects_v2')
:Here's the boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.list_objects_v2
The text was updated successfully, but these errors were encountered: