From 7861f6e8a50bc50d737366f1c89f248321383875 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 5 Feb 2014 10:45:05 -0800 Subject: [PATCH] possibly avoid some extra S3 charges Refs https://github.com/boto/boto/issues/2078 --- test-infra/s3_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-infra/s3_cache.py b/test-infra/s3_cache.py index adc466e008..472963a1e4 100755 --- a/test-infra/s3_cache.py +++ b/test-infra/s3_cache.py @@ -87,7 +87,7 @@ if __name__ == '__main__': mode, friendly_name, dependencies_file, directory = argv conn = S3Connection() - bucket = conn.lookup(BUCKET_NAME) + bucket = conn.lookup(BUCKET_NAME, validate=False) if bucket is None: raise SystemExit("Could not access bucket!")