apiMaxRecvMsgSize returns the configured gRPC max receive message size for the CLI's outbound connections, in bytes. 0 means "use grpcconn's default".
()
| 513 | // apiMaxRecvMsgSize returns the configured gRPC max receive message size for |
| 514 | // the CLI's outbound connections, in bytes. 0 means "use grpcconn's default". |
| 515 | func apiMaxRecvMsgSize() int { |
| 516 | return viper.GetInt(confOptions.maxRecvMsgSize.viperKey) |
| 517 | } |
| 518 | |
| 519 | // setLocalOrganization updates the local organization configuration |
| 520 | func setLocalOrganization(orgName string) error { |
no outgoing calls
no test coverage detected