chore: update gRPC library and enable shared write buffers

Fixes #7576

See https://github.com/grpc/grpc-go/pull/6309

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
This commit is contained in:
Andrey Smirnov
2023-09-12 15:48:31 +04:00
parent 9e78feccae
commit a096f05a56
17 changed files with 44 additions and 16 deletions

View File

@@ -102,6 +102,7 @@ func (a *APID) GetConnection(ctx context.Context, fullMethodName string) (contex
MinConnectTimeout: 20 * time.Second,
}),
grpc.WithCodec(proxy.Codec()), //nolint:staticcheck
grpc.WithSharedWriteBuffer(true),
)
return outCtx, a.conn, err