This commit is contained in:
Julius Unverfehrt 2022-08-12 13:32:40 +02:00
parent 711d2c8dbf
commit 48d5e1c9e1

View File

@ -46,7 +46,7 @@ class S3StorageAdapter(object):
try:
self._client.stat_object(bucket_name, object_name)
return True
except Exception: # TODO: specify exception
except Exception:
return False
@retry(tries=3, delay=5, jitter=(1, 3))