Skip to content

Commit

Permalink
Lengthen expiration for signed URL. (#4101)
Browse files Browse the repository at this point in the history
Closes #4100.
  • Loading branch information
tseaver authored Oct 2, 2017
1 parent 81ffda9 commit c5457af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def tearDown(self):

def test_create_signed_read_url(self):
blob = self.bucket.blob('LogoToSign.jpg')
expiration = int(time.time() + 5)
expiration = int(time.time() + 10)
signed_url = blob.generate_signed_url(expiration, method='GET',
client=Config.CLIENT)

Expand Down

0 comments on commit c5457af

Please sign in to comment.