fix(timeouts): reduce AtCoder submit nav timeout to 20s
This commit is contained in:
parent
1e1a632af8
commit
b7b79fa9c2
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ BROWSER_NAV_TIMEOUT = 10000
|
||||||
BROWSER_SUBMIT_NAV_TIMEOUT: defaultdict[str, int] = defaultdict(
|
BROWSER_SUBMIT_NAV_TIMEOUT: defaultdict[str, int] = defaultdict(
|
||||||
lambda: BROWSER_NAV_TIMEOUT
|
lambda: BROWSER_NAV_TIMEOUT
|
||||||
)
|
)
|
||||||
BROWSER_SUBMIT_NAV_TIMEOUT["atcoder"] = BROWSER_NAV_TIMEOUT * 4
|
BROWSER_SUBMIT_NAV_TIMEOUT["atcoder"] = BROWSER_NAV_TIMEOUT * 2
|
||||||
BROWSER_SUBMIT_NAV_TIMEOUT["codeforces"] = BROWSER_NAV_TIMEOUT * 2
|
BROWSER_SUBMIT_NAV_TIMEOUT["codeforces"] = BROWSER_NAV_TIMEOUT * 2
|
||||||
BROWSER_TURNSTILE_POLL = 5000
|
BROWSER_TURNSTILE_POLL = 5000
|
||||||
BROWSER_ELEMENT_WAIT = 10000
|
BROWSER_ELEMENT_WAIT = 10000
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue