From 656a9534a50a3fa64b7270deccd8521c8b62f9dd Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Mon, 18 Apr 2022 05:33:20 -0700 Subject: [PATCH] Bump flow control window back up. Signed-off-by: Derek Collison --- server/consumer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/consumer.go b/server/consumer.go index db7b6fab..20938402 100644 --- a/server/consumer.go +++ b/server/consumer.go @@ -295,7 +295,7 @@ const ( JsDeleteWaitTimeDefault = 5 * time.Second // JsFlowControlMaxPending specifies default pending bytes during flow control that can be // outstanding. - JsFlowControlMaxPending = 16 * 1024 * 1024 + JsFlowControlMaxPending = 32 * 1024 * 1024 // JsDefaultMaxAckPending is set for consumers with explicit ack that do not set the max ack pending. JsDefaultMaxAckPending = 1000 )