We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 521e2bf commit 24ea536Copy full SHA for 24ea536
tests/system/_helpers.py
@@ -79,7 +79,7 @@ def delete_blob(blob):
79
errors = (exceptions.Conflict, exceptions.TooManyRequests)
80
retry = RetryErrors(errors)
81
try:
82
- retry(blob.delete)()
+ retry(blob.delete)(timeout=120) # seconds
83
except exceptions.NotFound: # race
84
pass
85
0 commit comments