Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netty: Abrupt GOAWAY should not cause INTERNAL status #7501

Merged
merged 1 commit into from Oct 22, 2020

Commits on Oct 9, 2020

  1. netty: Abrupt GOAWAY should not cause INTERNAL status

    The stream creation was failing because the stream id was disallowed:
    Caused by: io.grpc.StatusRuntimeException: INTERNAL: http2 exception
    	at io.grpc.Status.asRuntimeException(Status.java:533)
    	at io.grpc.stub.ClientCalls$BlockingResponseStream.hasNext(ClientCalls.java:629)
    	... 16 more
    Caused by: io.grpc.netty.shaded.io.netty.handler.codec.http2.Http2Exception$StreamException: Cannot create stream 222691 greater than Last-Stream-ID 222689 from GOAWAY.
    
    The problem was introduced in 9ead606. Fixes grpc#7357
    ejona86 committed Oct 9, 2020
    Copy the full SHA
    4ad14fe View commit details
    Browse the repository at this point in the history