Skip to content

Commit

Permalink
Merge pull request #28 from kentibs/setup/monitoring
Browse files Browse the repository at this point in the history
refactor(rate-limit): increase rate to cater for monitoring
  • Loading branch information
Tibz-Dankan authored Jan 4, 2024
2 parents 2eb401d + 0d1af5f commit bdfba58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/rateLimitController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let requestLimit: number;
if (process.env.NODE_ENV === "test") {
requestLimit = 40;
} else {
requestLimit = 12;
requestLimit = 15;
}

export const rateLimitController = rateLimit({
Expand Down

0 comments on commit bdfba58

Please sign in to comment.