From 868ed6dbf6b551c9e322f6404bc3962bcf5f92da Mon Sep 17 00:00:00 2001 From: mikhail-klimko Date: Thu, 19 Oct 2023 17:09:45 +0300 Subject: [PATCH] fix: bump max grpc size --- cmpserver/apiclient/clientset.go | 2 +- reposerver/apiclient/clientset.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmpserver/apiclient/clientset.go b/cmpserver/apiclient/clientset.go index 6b4c19f0261ff..65a9eb580dd38 100644 --- a/cmpserver/apiclient/clientset.go +++ b/cmpserver/apiclient/clientset.go @@ -17,7 +17,7 @@ import ( const ( // MaxGRPCMessageSize contains max grpc message size - MaxGRPCMessageSize = 100 * 1024 * 1024 + MaxGRPCMessageSize = 200 * 1024 * 1024 ) // Clientset represents config management plugin server api clients diff --git a/reposerver/apiclient/clientset.go b/reposerver/apiclient/clientset.go index 4a42235b7049c..1452b6e61db16 100644 --- a/reposerver/apiclient/clientset.go +++ b/reposerver/apiclient/clientset.go @@ -22,7 +22,7 @@ import ( const ( // MaxGRPCMessageSize contains max grpc message size - MaxGRPCMessageSize = 100 * 1024 * 1024 + MaxGRPCMessageSize = 200 * 1024 * 1024 ) // TLSConfiguration describes parameters for TLS configuration to be used by a repo server API client