Skip to content

Commit

Permalink
Restore compatibility of aegea s3 buckets with latest boto3
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Nov 29, 2024
1 parent af5ff4c commit f5af1c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aegea/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def buckets(args):
List S3 buckets. See also "aws s3 ls". Use "aws s3 ls NAME" to list bucket contents.
"""
with ThreadPoolExecutor() as executor:
table = executor.map(describe_bucket_worker, filter_collection(resources.s3.buckets, args))
table = executor.map(describe_bucket_worker, resources.s3.buckets.all())
page_output(tabulate(table, args))


Expand Down

0 comments on commit f5af1c2

Please sign in to comment.