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 240496b commit ab0fbabCopy full SHA for ab0fbab
src/main/java/utils/RateLimit.java
@@ -10,8 +10,8 @@
10
public class RateLimit {
11
12
private static final int MAX_REQUESTS = 3;
13
- private static final int INTERVAL = 1 * 60 * 1000; // 6000 ms || 1 min
14
- private static final int BLOCKED_TIME = 2 * 60 * 1000; // 12000 ms || 2min
+ private static final int INTERVAL = 1 * 60 * 1000; // 1min
+ private static final int BLOCKED_TIME = 2 * 60 * 1000; // 2min
15
16
private Map<String, ArrayList<Calendar>> requestsList;
17
private Map<String, Calendar> blockedList;
0 commit comments