1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 17:19:38 +02:00

Extend timeout of Firefox publish script to 60 minutes

This commit is contained in:
Raymond Hill 2020-07-10 07:44:17 -04:00
parent ebf7fb145e
commit f955d502c3
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -197,7 +197,7 @@ with open(unsigned_xpi_filepath, 'rb') as f:
# https://blog.mozilla.org/addons/2019/11/11/security-improvements-in-amo-upload-tools/
# "We recommend allowing up to 15 minutes."
interval = 60 # check every 60 seconds
countdown = 15 * 60 / interval # for at most 15 minutes
countdown = 60 * 60 / interval # for at most 60 minutes
headers = { 'Authorization': get_jwt_auth(), }
data = { 'channel': 'unlisted' }
files = { 'upload': f, }