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

http2: send GOAWAY properly & don't continue reading unnecessarily #20772

Closed

Commits on May 20, 2018

  1. http2: submit Goaway frames & handle ECONNRESET

    Currently http2 does not properly submit Goaway frames when
    a session is being destroyed. It also doesn't properly
    handle when the other party severs the connection after
    sending a Goaway frame, even though it should.
    apapirovski committed May 20, 2018
    Configuration menu
    Copy the full SHA
    6cfca8a View commit details
    Browse the repository at this point in the history
  2. fixup tests

    apapirovski committed May 20, 2018
    Configuration menu
    Copy the full SHA
    cccee38 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2018

  1. Configuration menu
    Copy the full SHA
    3a4a7ce View commit details
    Browse the repository at this point in the history
  2. test: fix flaky http2-session-unref

    It's possible for the connections to take too long and since the
    server is already unrefed, the process will just exit. Instead
    adjust the test so that server unref only happens after all
    session have been successfuly established and unrefed. That still
    tests the same condition but will not fail under load.
    apapirovski committed May 21, 2018
    Configuration menu
    Copy the full SHA
    77f6aa2 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2018

  1. Configuration menu
    Copy the full SHA
    9dff0ca View commit details
    Browse the repository at this point in the history