Skip to content

Commit a221dc9

Browse files
authored
Lengthen expiration for signed URL. (#4101)
Closes #4100.
1 parent 8e297bd commit a221dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/tests/system.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def tearDown(self):
439439

440440
def test_create_signed_read_url(self):
441441
blob = self.bucket.blob('LogoToSign.jpg')
442-
expiration = int(time.time() + 5)
442+
expiration = int(time.time() + 10)
443443
signed_url = blob.generate_signed_url(expiration, method='GET',
444444
client=Config.CLIENT)
445445

0 commit comments

Comments
 (0)