From 859f945a6424916a394e9e2930508583cce41c9b Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Mon, 25 Nov 2024 22:44:16 -1000 Subject: [PATCH] increase number of concurrent find --- routing/providerquerymanager/providerquerymanager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/providerquerymanager/providerquerymanager.go b/routing/providerquerymanager/providerquerymanager.go index 6ce38e7ec..076cbbe05 100644 --- a/routing/providerquerymanager/providerquerymanager.go +++ b/routing/providerquerymanager/providerquerymanager.go @@ -19,7 +19,7 @@ import ( var log = logging.Logger("routing/provqrymgr") const ( - defaultMaxInProcessRequests = 6 + defaultMaxInProcessRequests = 16 defaultMaxProviders = 0 defaultTimeout = 10 * time.Second )