Bug 1085557 - Bump symbol upload timeout to 120s. a=NPOTB
--- a/toolkit/crashreporter/tools/upload_symbols.py
+++ b/toolkit/crashreporter/tools/upload_symbols.py
@@ -46,17 +46,17 @@ def main():
print('Uploading symbol file "{0}" to "{1}"...'.format(sys.argv[1], url))
try:
r = requests.post(
url,
files={'symbols.zip': open(sys.argv[1], 'rb')},
headers={'Auth-Token': auth_token},
allow_redirects=False,
- timeout=60,
+ timeout=120,
)
except requests.exceptions.RequestException as e:
print('Error: {0}'.format(e))
return 1
if r.status_code >= 200 and r.status_code < 300:
print('Uploaded successfully!')
elif r.status_code < 400: