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