Skip to content

Commit

Permalink
Bump rate limiter by 10x and up to 2.0.1 for prod rerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
tcorbly committed Nov 13, 2024
1 parent 51c8490 commit 9b9a5af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion express.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ try {
var RateLimit = require('express-rate-limit');
var limiter = RateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100, // max 100 requests per windowMs
max: 1000, // max 100 requests per windowMs
});

// apply rate limiter to all requests
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simulator",
"version": "2.0.0",
"version": "2.0.1",
"sideEffects": false,
"main": "dist/index.js",
"author": "KISS Institute for Practical Robotics",
Expand Down

0 comments on commit 9b9a5af

Please sign in to comment.