mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-09 16:17:01 +02:00
16 lines
281 B
Go
16 lines
281 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"math"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
var largeMsgGRPCCallOpts []grpc.CallOption = []grpc.CallOption{
|
|
grpc.MaxCallSendMsgSize(math.MaxInt32),
|
|
grpc.MaxCallRecvMsgSize(math.MaxInt32),
|
|
}
|