Skip to content

Commit

Permalink
remove create_bucket retries in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Nov 16, 2023
1 parent c8410f2 commit 5f4a141
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/integration/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,6 @@ def new_bucket_info(self) -> dict:
"created_by": NODE_DESCRIPTION,
}

@backoff.on_exception(
backoff.expo,
BadRequest, # there is no specialized exception for too_many_buckets
max_time=60,
max_value=5,
)
def create_bucket(self, bucket_type: str = 'allPublic', **kwargs) -> Bucket:
bucket_name = self.new_bucket_name()
return self.api.create_bucket(
Expand Down

0 comments on commit 5f4a141

Please sign in to comment.