From: Chris Rebert Date: Wed, 5 Feb 2014 18:45:05 +0000 (-0800) Subject: possibly avoid some extra S3 charges X-Git-Tag: v3.2.0~403^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7861f6e8a50bc50d737366f1c89f248321383875;p=thirdparty%2Fbootstrap.git possibly avoid some extra S3 charges Refs https://github.com/boto/boto/issues/2078 --- 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!")