Skip to content

Commit

Permalink
[ews-build.webkit.org] Bump S3 upload timeout to 10 minutes
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=266118
rdar://119407808

Reviewed by Ryan Haddad.

* Tools/Scripts/upload-file-to-url:
(upload): Bump timeout to 10 minutes.

Canonical link: https://commits.webkit.org/271772@main
  • Loading branch information
JonWBedard committed Dec 9, 2023
1 parent 3fb906a commit a98d81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Scripts/upload-file-to-url
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def upload(filename, url):
with open(filename, 'rb') as f:
try:
data = f.read()
response = requests.put(url, data=data, timeout=5*60)
response = requests.put(url, data=data, timeout=10*60)
except Exception as e:
print(f'Exception: {e}')
sys.exit(-1)
Expand Down

0 comments on commit a98d81e

Please sign in to comment.