mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 07:37:01 +02:00
13 lines
211 B
Go
13 lines
211 B
Go
package plugin
|
|
|
|
import (
|
|
"math"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
var largeMsgGRPCCallOpts []grpc.CallOption = []grpc.CallOption{
|
|
grpc.MaxCallSendMsgSize(math.MaxInt32),
|
|
grpc.MaxCallRecvMsgSize(math.MaxInt32),
|
|
}
|