[infra] Update upload URL timeout to be the same as build timeout (#1112)

This commit is contained in:
Oliver Chang 2018-02-01 16:04:11 +11:00 committed by GitHub
parent b77745ab6c
commit 92152969c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def load_project_yaml(project_dir):
def get_signed_url(path):
timestamp = int(time.time() + 60 * 60 * 5)
timestamp = int(time.time() + BUILD_TIMEOUT)
blob = 'PUT\n\n\n{0}\n{1}'.format(
timestamp, path)