From 1054921961b7e20e1583ecfae5b2e2902b6a947a Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Tue, 1 Jun 2021 20:24:47 +0000 Subject: [PATCH] Buffer sizes need to be set on server side --- connect/host.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/connect/host.go b/connect/host.go index 128d7f5..a76f50e 100644 --- a/connect/host.go +++ b/connect/host.go @@ -398,8 +398,6 @@ func (h *Host) connectHelper() (err error) { grpc.WithBlock(), grpc.WithKeepaliveParams(KaClientOpts), securityDial, - grpc.WithReadBufferSize(0), - grpc.WithWriteBufferSize(0), } windowSize := atomic.LoadInt32(h.windowSize) -- GitLab