Skip to content

Commit

Permalink
fix: bump max grpc size
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-klimko committed Oct 19, 2023
1 parent 517e6f6 commit 868ed6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmpserver/apiclient/clientset.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion reposerver/apiclient/clientset.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 868ed6d

Please sign in to comment.