Remove unnecessary bucket validation call in storage

This commit is contained in:
Joseph Schorr 2017-07-26 18:14:53 -04:00
parent cc79a2a3db
commit cdee387d3f

View file

@ -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):