mirror of https://github.com/grpc/grpc-java.git
Fixing a typo in Http2ClientStream.
This commit is contained in:
parent
2a17d2648c
commit
f6aba497ae
|
|
@ -137,7 +137,7 @@ public abstract class Http2ClientStream extends AbstractClientStream<Integer> {
|
|||
inboundDataReceived(frame);
|
||||
if (endOfStream) {
|
||||
// This is a protocol violation as we expect to receive trailers.
|
||||
transportError = Status.INTERNAL.withDescription("Recevied EOS on DATA frame");
|
||||
transportError = Status.INTERNAL.withDescription("Received EOS on DATA frame");
|
||||
transportErrorMetadata = new Metadata();
|
||||
inboundTransportError(transportError, transportErrorMetadata);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue