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
Currently we're not waiting via sleep nor do we validate that certain S3 operations have succeeded, which might result in unexpected failures due to a race condition.
For example, using S3Client.delete_bucket() right after S3Client.delete_all_objects_in_bucket() might fail due to a BucketNotEmpty if the objects were not deleted in time.
The text was updated successfully, but these errors were encountered:
Currently we're not waiting via sleep nor do we validate that certain S3 operations have succeeded, which might result in unexpected failures due to a race condition.
For example, using
S3Client.delete_bucket()
right afterS3Client.delete_all_objects_in_bucket()
might fail due to a BucketNotEmpty if the objects were not deleted in time.The text was updated successfully, but these errors were encountered: