encodeGoGoStatus encodes a GoGo Status error. It calls encodeGrpcStatus, since it can handle both kinds.
(ctx context.Context, err error)
| 158 | // encodeGoGoStatus encodes a GoGo Status error. It calls encodeGrpcStatus, since |
| 159 | // it can handle both kinds. |
| 160 | func encodeGoGoStatus(ctx context.Context, err error) (string, []string, proto.Message) { |
| 161 | return encodeGrpcStatus(ctx, err) |
| 162 | } |
| 163 | |
| 164 | // decodeGoGoStatus is similar to decodeGrpcStatus, but decodes into a gogo |
| 165 | // Status error instead of a gRPC Status error. It is used when the original |
nothing calls this directly
no test coverage detected
searching dependent graphs…