mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-13 06:47:28 -08:00
81c4248081
The goal is to remove almost all references to the golang.org/x/net/context package. github.com/gogo/protobuf => v1.2.1 google.golang.org/grpc => v1.19.1 github.com/grpc-ecosystem/grpc-gateway => v1.18.5 It also replaces github.com/cockroachdb/cmux by github.com/soheilhy/cmux because of [1] which fixes #3909 incidentally. [1] https://github.com/grpc/grpc-go/issues/2636 Signed-off-by: Simon Pasquier <spasquie@redhat.com>
16 lines
368 B
Protocol Buffer
16 lines
368 B
Protocol Buffer
syntax = "proto3";
|
|
package grpc.gateway.runtime;
|
|
option go_package = "internal";
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
// StreamError is a response type which is returned when
|
|
// streaming rpc returns an error.
|
|
message StreamError {
|
|
int32 grpc_code = 1;
|
|
int32 http_code = 2;
|
|
string message = 3;
|
|
string http_status = 4;
|
|
repeated google.protobuf.Any details = 5;
|
|
}
|