Merge pull request #2827 from coreos-inc/remove-validate-storage
Remove unnecessary bucket validation call in storage
This commit is contained in:
commit
d2dc3c40bf
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class _CloudStorage(BaseStorageV2):
|
|||
if not self._initialized:
|
||||
self._cloud_conn = self._connection_class(self._access_key, self._secret_key,
|
||||
**self._connect_kwargs)
|
||||
self._cloud_bucket = self._cloud_conn.get_bucket(self._bucket_name)
|
||||
self._cloud_bucket = self._cloud_conn.get_bucket(self._bucket_name, validate=False)
|
||||
self._initialized = True
|
||||
|
||||
def _debug_key(self, key):
|
||||
|
|
Reference in a new issue