mirror of https://github.com/gorhill/uBlock.git
Extend timeout of Firefox publish script to 60 minutes
This commit is contained in:
parent
ebf7fb145e
commit
f955d502c3
|
@ -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, }
|
||||
|
|
Loading…
Reference in New Issue