We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa7d86 commit ea3d1e6Copy full SHA for ea3d1e6
connection.js
@@ -30,7 +30,7 @@ module.exports = function (RED) {
30
this.rater = new RateLimiter(
31
[
32
{ period: 1 * 60 * 1000, limit: 12, penalty: 0, repeat: 10 }, //for 10 min: Limit to 12 req / min
33
- { period: 10 * 60 * 1000, limit: 3, penalty: 1 }, //afterward: Limit to 3 req / 10 min
+ { period: 10 * 60 * 1000, limit: 5, penalty: 1 }, //afterward: Limit to 5 req / 10 min
34
],
35
null, //= callback
36
this.logger
0 commit comments