From 7ccd18e15a94011a98912c58530199c2b732fbc4 Mon Sep 17 00:00:00 2001 From: Dong-Ha Kim Date: Thu, 5 Sep 2024 19:00:31 +0700 Subject: [PATCH] fix: reduce max concurrency --- api/_utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/_utils.ts b/api/_utils.ts index 254158ffa..a232b6968 100644 --- a/api/_utils.ts +++ b/api/_utils.ts @@ -734,7 +734,7 @@ function getProviderFromConfigJson(_chainId: string) { 1, // quorum can be 1 in the context of the API 3, // retries 0.1, // delay - 100, // max. concurrency + 10, // max. concurrency "RPC_PROVIDER", // cache namespace 0 // disable RPC calls logging );