Skip to content

Commit

Permalink
revert: github auth timeout change
Browse files Browse the repository at this point in the history
  • Loading branch information
addievo committed Oct 16, 2023
1 parent d88bb2d commit 6fc85e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/identities/providers/github/GitHubProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ class GitHubProvider extends Provider {
protected logger: Logger;

public constructor({
clientId,
logger,
}: {
clientId,
logger,
}: {
clientId: string;
logger?: Logger;
}) {
Expand All @@ -42,7 +42,7 @@ class GitHubProvider extends Provider {
}

public async *authenticate(
timeout: number = 1000000,
timeout: number = 120000,
): AsyncGenerator<ProviderAuthenticateRequest, IdentityId> {
const params = new URLSearchParams();
params.set('client_id', this.clientId);
Expand Down

0 comments on commit 6fc85e9

Please sign in to comment.