mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00: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),
 | |
| }
 | 
