diff options
author | Tim Burke <tim.burke@gmail.com> | 2018-11-09 15:46:06 -0800 |
---|---|---|
committer | Tim Burke <tim.burke@gmail.com> | 2018-11-12 11:04:20 -0800 |
commit | 692a03473f6cfffd089624c61772488096a9bdeb (patch) | |
tree | 2cc29be61420aa5fca661cb175c527d6f3a0a548 /swift/common/middleware/s3api/s3request.py | |
parent | 168dc91bd993dbe3115f2a53c42fda33f558a758 (diff) | |
download | swift-692a03473f6cfffd089624c61772488096a9bdeb.tar.gz |
s3api: Change default location to us-east-1
This is more likely to be the default region that a client would try for
v4 signatures.
UpgradeImpact:
==============
Deployers with clusters that relied on the old implicit default
location of US should explicitly set
location = US
in the [filter:s3api] section of proxy-server.conf before upgrading.
Change-Id: Ib6659a7ad2bd58d711002125e7820f6e86383be8
Diffstat (limited to 'swift/common/middleware/s3api/s3request.py')
-rw-r--r-- | swift/common/middleware/s3api/s3request.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/swift/common/middleware/s3api/s3request.py b/swift/common/middleware/s3api/s3request.py index 03894a09e..2a71b05ed 100644 --- a/swift/common/middleware/s3api/s3request.py +++ b/swift/common/middleware/s3api/s3request.py @@ -461,8 +461,8 @@ class S3Request(swob.Request): bucket_acl = _header_acl_property('container') object_acl = _header_acl_property('object') - def __init__(self, env, app=None, slo_enabled=True, - storage_domain='', location='US', force_request_log=False, + def __init__(self, env, app=None, slo_enabled=True, storage_domain='', + location='us-east-1', force_request_log=False, dns_compliant_bucket_names=True, allow_multipart_uploads=True, allow_no_owner=False): # NOTE: app and allow_no_owner are not used by this class, need for @@ -1397,8 +1397,8 @@ class S3AclRequest(S3Request): """ S3Acl request object. """ - def __init__(self, env, app, slo_enabled=True, - storage_domain='', location='US', force_request_log=False, + def __init__(self, env, app, slo_enabled=True, storage_domain='', + location='us-east-1', force_request_log=False, dns_compliant_bucket_names=True, allow_multipart_uploads=True, allow_no_owner=False): super(S3AclRequest, self).__init__( |