From 5573933034c9a43e294ffc881fed5c77e6e3929e Mon Sep 17 00:00:00 2001 From: Ivan Kozlovic Date: Wed, 31 Aug 2022 09:19:28 -0600 Subject: [PATCH] Bump back the defaultMaxTotalCatchupOutBytes to 128MB Signed-off-by: Ivan Kozlovic --- server/jetstream_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/jetstream_cluster.go b/server/jetstream_cluster.go index bc3d8668..cde05163 100644 --- a/server/jetstream_cluster.go +++ b/server/jetstream_cluster.go @@ -7219,7 +7219,7 @@ func (mset *stream) handleClusterStreamInfoRequest(sub *subscription, c *client, sysc.sendInternalMsg(reply, _EMPTY_, nil, si) } -const defaultMaxTotalCatchupOutBytes = int64(32 * 1024 * 1024) // 32MB for now, for the total server. +const defaultMaxTotalCatchupOutBytes = int64(128 * 1024 * 1024) // 128MB for now, for the total server. // Current total outstanding catchup bytes. func (s *Server) gcbTotal() int64 {