From f2154693e1647f14e377e8ba26358ac95fe202d4 Mon Sep 17 00:00:00 2001 From: tamirms Date: Wed, 13 Mar 2024 21:42:55 +0000 Subject: [PATCH] fix defaultMaxConcurrentRequests --- services/horizon/internal/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/horizon/internal/flags.go b/services/horizon/internal/flags.go index 7913d86ab0..b95848d868 100644 --- a/services/horizon/internal/flags.go +++ b/services/horizon/internal/flags.go @@ -68,7 +68,7 @@ const ( // StellarTestnet is a constant representing the Stellar test network StellarTestnet = "testnet" - defaultMaxConcurrentRequests = 1000 + defaultMaxConcurrentRequests = uint(1000) defaultMaxHTTPRequestSize = uint(200 * 1024) )