Skip to content

Commit

Permalink
Lower maxPollSecs from 300 to 120
Browse files Browse the repository at this point in the history
  • Loading branch information
treyturner committed Jan 1, 2024
1 parent de09fb3 commit db9985f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sanitize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const config = {
),
apiUrl: process.env.API_URL,
apiKey: process.env.API_KEY,
maxPollSecs: Number.isInteger(maxPollSecsRaw) ? maxPollSecsRaw : 300,
maxPollSecs: Number.isInteger(maxPollSecsRaw) ? maxPollSecsRaw : 120,
clearWarnings: process.env.CLEAR_WARNINGS === 'false' ? false : true,
};
let pollSecs = 1;
Expand Down

0 comments on commit db9985f

Please sign in to comment.