Skip to content

Commit

Permalink
Harden systest teardown further. (#5900)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver authored Sep 7, 2018
1 parent cbf90ec commit bcbc300
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion storage/tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def setUpModule():


def tearDownModule():
retry = RetryErrors(exceptions.Conflict, exceptions.TooManyRequests)
errors = (exceptions.Conflict, exceptions.TooManyRequests)
retry = RetryErrors(errors, max_tries=6)
retry(Config.TEST_BUCKET.delete)(force=True)


Expand Down

0 comments on commit bcbc300

Please sign in to comment.