Skip to content

Commit c22a795

Browse files
authored
More generous OAuth timeout (#9960)
Helps with slow connections; Cloudflare checks.
1 parent 499aa18 commit c22a795

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/LaunchServer.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ end
192192
-- attempt to establish a connection at the same time. In the future, this could be refactored to perform non-blocking
193193
-- IO, so that it can operate concurrently, but hopefully that isn't necessary.
194194
local attempt = 1
195-
local stopAt = os.time() + 30
195+
local stopAt = os.time() + 60
196196
local errMsg
197197
local shouldRetry, code, state = true, nil, nil
198198
while (os.time() < stopAt) and shouldRetry do

0 commit comments

Comments
 (0)