Skip to content

Commit 195ec65

Browse files
committed
fix: try to bring retry delay down, alarm interval up
1 parent 905e35c commit 195ec65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const APP_CONFIG = {
99
MAX_REQUESTS_PER_INTERVAL: 30, // no more than 30 requests
1010
INTERVAL_MS: 15000, // in a span of 15 seconds
1111
MAX_RETRIES: 3, // max retries for failed fetches
12-
RETRY_DELAY: 2000, // multiplied by retry attempt number
12+
RETRY_DELAY: 1000, // multiplied by retry attempt number
1313
// how often to warm the cache, should be shorter than the cache TTL
14-
ALARM_INTERVAL_MS: 180000, // 3 minutes
14+
ALARM_INTERVAL_MS: 300000, // 5 minutes
1515
};

0 commit comments

Comments
 (0)