Skip to content

Commit

Permalink
client: fix empty result for cluster table when enable grpc compress
Browse files Browse the repository at this point in the history
  • Loading branch information
lysu committed Jun 17, 2021
1 parent 573515e commit 04af474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/tikv/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import (

// MaxRecvMsgSize set max gRPC receive message size received from server. If any message size is larger than
// current value, an error will be reported from gRPC.
var MaxRecvMsgSize = math.MaxInt64
var MaxRecvMsgSize = math.MaxInt64 - 1

// Timeout durations.
const (
Expand Down

0 comments on commit 04af474

Please sign in to comment.