Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ interface GitHubRepo {
const MAX_RETRIES = 3;
const BASE_DELAY_MS = 500;
const MAX_RETRY_DELAY_MS = 5000;
const GRAPHQL_TIMEOUT_MS = 8000; // 8s for GraphQL endpoint
const REST_TIMEOUT_MS = 5000; // 5s for REST endpoints
const GRAPHQL_TIMEOUT_MS = parseInt(process.env.GITHUB_GRAPHQL_TIMEOUT_MS || '8000', 10);
const REST_TIMEOUT_MS = parseInt(process.env.GITHUB_REST_TIMEOUT_MS || '5000', 10);
const ORG_MEMBER_LIMIT = 100;

let currentTokenIndex = 0;
Expand Down
Loading