From f5af1c2fc54926bdbec0ca08a89913162167bf3e Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Thu, 28 Nov 2024 16:11:57 -0800 Subject: [PATCH] Restore compatibility of aegea s3 buckets with latest boto3 --- aegea/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegea/s3.py b/aegea/s3.py index 14fd759..b19dad2 100644 --- a/aegea/s3.py +++ b/aegea/s3.py @@ -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))