Skip to content

Commit f5fc1e1

Browse files
authored
tests: use 120 sec timeout for 'blob.delete' during teardown (#518)
Closes #517
1 parent b1f99e2 commit f5fc1e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/google-cloud-storage/tests/system/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def delete_blob(blob):
7979
errors = (exceptions.Conflict, exceptions.TooManyRequests)
8080
retry = RetryErrors(errors)
8181
try:
82-
retry(blob.delete)()
82+
retry(blob.delete)(timeout=120) # seconds
8383
except exceptions.NotFound: # race
8484
pass
8585

0 commit comments

Comments
 (0)