Skip to content

Commit ecccf4b

Browse files
sbchaossravankorumilli
authored andcommitted
fix: update the grpc limits for the client side (#234)
1 parent 48549a2 commit ecccf4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/commands.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ var (
4141
)
4242

4343
const (
44-
GRPCMaxClientSendSize = 45 << 20 // 45MB
45-
GRPCMaxClientRecvSize = 45 << 20 // 45MB
44+
GRPCMaxClientSendSize = 64 << 20 // 64MB
45+
GRPCMaxClientRecvSize = 64 << 20 // 64MB
4646
GRPCMaxRetry uint = 3
4747

4848
OptimusDialTimeout = time.Second * 2

0 commit comments

Comments
 (0)