From afad55749be0c6e2c51d495e7a22c09bdfdc6410 Mon Sep 17 00:00:00 2001 From: Zed Date: Wed, 5 Feb 2025 03:49:34 +0100 Subject: [PATCH] Increase max concurrent reqs per account --- src/auth.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.nim b/src/auth.nim index fe265c9..85fe4a7 100644 --- a/src/auth.nim +++ b/src/auth.nim @@ -5,7 +5,7 @@ import experimental/parser/guestaccount # max requests at a time per account to avoid race conditions const - maxConcurrentReqs = 2 + maxConcurrentReqs = 3 dayInSeconds = 24 * 60 * 60 apiMaxReqs: Table[Api, int] = { Api.search: 50,