mirror of https://github.com/grpc/grpc-go.git
fix merge conflict
This commit is contained in:
parent
dd17fced98
commit
6eb790420c
|
|
@ -51,7 +51,7 @@ import (
|
|||
|
||||
var (
|
||||
// alpnProtoStr are the specified application level protocols for gRPC.
|
||||
alpnProtoStr = []string{"h2", "h2-14", "h2-15", "h2-16"}
|
||||
alpnProtoStr = []string{"h2"}
|
||||
)
|
||||
|
||||
// Credentials defines the common interface all supported credentials must
|
||||
|
|
|
|||
|
|
@ -277,11 +277,7 @@ func doTimeoutOnSleepingServer(tc testpb.TestServiceClient) {
|
|||
grpclog.Fatalf("%v.Send(%v) = %v", stream, req, err)
|
||||
}
|
||||
if _, err := stream.Recv(); grpc.Code(err) != codes.DeadlineExceeded {
|
||||
<<<<<<< HEAD
|
||||
grpclog.Fatalf("%v.Recv() = _, %v, want error code %d", stream, err, codes.DeadlineExceeded)
|
||||
=======
|
||||
grpclog.Fatalf("%v got the error %v, want error code: %d", stream, err, codes.DeadlineExceeded)
|
||||
>>>>>>> 2a4442cda2d99dad88ccbcaf39f8975fcf85747c
|
||||
}
|
||||
grpclog.Println("TimeoutOnSleepingServer done")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue