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 b90a1d6 commit 2230614Copy full SHA for 2230614
lib/config.ts
@@ -125,8 +125,8 @@ function validateConfig(c: EnvConfig) {
125
`FUTBOT_FUT_REQUESTS_PER_SEC=${c.FUTBOT_FUT_REQUESTS_PER_SEC} is too high, you'll require verification really soon`
126
);
127
}
128
- if (c.FUTBOT_FUT_REQUESTS_PER_SEC < 0.1) {
129
- throw new Error('FUTBOT_FUT_REQUESTS_PER_SEC cannot be smaller than 0.1');
+ if (c.FUTBOT_FUT_REQUESTS_PER_SEC < 0.01) {
+ throw new Error('FUTBOT_FUT_REQUESTS_PER_SEC cannot be smaller than 0.01');
130
131
if (c.FUTBOT_FUTBIN_REQUESTS_PER_SEC > 3) {
132
logger.warn(
0 commit comments