Skip to content

Commit

Permalink
tests: use 120 sec timeout for 'blob.delete' during teardown (#518)
Browse files Browse the repository at this point in the history
Closes #517
  • Loading branch information
tseaver committed Jul 22, 2021
1 parent 521e2bf commit 24ea536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/_helpers.py
Expand Up @@ -79,7 +79,7 @@ def delete_blob(blob):
errors = (exceptions.Conflict, exceptions.TooManyRequests)
retry = RetryErrors(errors)
try:
retry(blob.delete)()
retry(blob.delete)(timeout=120) # seconds
except exceptions.NotFound: # race
pass

Expand Down

0 comments on commit 24ea536

Please sign in to comment.