Skip to content

Commit

Permalink
Merge pull request #3222 from continuedev/nate/quick-edit-e98a
Browse files Browse the repository at this point in the history
increase login timeout
  • Loading branch information
sestinj authored Dec 6, 2024
2 parents f3d0399 + b47110a commit ebd4278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/vscode/src/stubs/WorkOsAuthProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ export class WorkOsAuthProvider implements AuthenticationProvider, Disposable {
return await Promise.race([
codeExchangePromise.promise,
new Promise<string>((_, reject) =>
setTimeout(() => reject("Cancelled"), 60000),
setTimeout(() => reject("Cancelled"), 15 * 60 * 1_000),
),
promiseFromEvent<any, any>(
token.onCancellationRequested,
Expand Down

0 comments on commit ebd4278

Please sign in to comment.