Fixing a typo in Http2ClientStream.

This commit is contained in:
Solomon Duskis 2016-02-02 20:52:58 -05:00 committed by Eric Anderson
parent 2a17d2648c
commit f6aba497ae
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ public abstract class Http2ClientStream extends AbstractClientStream<Integer> {
inboundDataReceived(frame); inboundDataReceived(frame);
if (endOfStream) { if (endOfStream) {
// This is a protocol violation as we expect to receive trailers. // 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(); transportErrorMetadata = new Metadata();
inboundTransportError(transportError, transportErrorMetadata); inboundTransportError(transportError, transportErrorMetadata);
} }