rm retry decorator on clear_bucket, unpin minio

This commit is contained in:
Matthias Bisping 2022-06-14 17:02:22 +02:00
parent 771df7c78d
commit c8fb15b9f7
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
version: '2'
services:
minio:
image: minio/minio:RELEASE.2022-06-11T19-55-32Z
image: minio/minio
ports:
- "9000:9000"
environment:

View File

@ -37,7 +37,6 @@ class Storage:
def get_all_objects(self, bucket_name):
return self.__adapter.get_all_objects(bucket_name)
@retry(tries=3, delay=5, jitter=(1, 3))
def clear_bucket(self, bucket_name):
return self.__adapter.clear_bucket(bucket_name)