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: Support pseudo headers in all GrpcHttp2RequestHeaders methods #9004

Merged
merged 5 commits into from Mar 22, 2022

Commits on Mar 21, 2022

  1. netty: Support pseudo headers in all GrpcHttp2RequestHeaders methods

    The previous code assumed that only gRPC would be using these methods.
    But twice now Netty has made a change (generally relating to security)
    that used a method for pseudo headers that previously wasn't supported.
    Let's stop the whack-a-mole and just implement them all.
    
    This restores compatibility with Netty 4.1.75.Final. Fixes grpc#8981
    ejona86 committed Mar 21, 2022
    Copy the full SHA
    1e59f1a View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    3afddae View commit details
    Browse the repository at this point in the history
  3. Use getall() instead of get()

    I had these changes locally, but failed to use "-a" for my "git commit"
    to add them...
    ejona86 committed Mar 21, 2022
    Copy the full SHA
    ce8fcf5 View commit details
    Browse the repository at this point in the history
  4. Tests for exceptions

    ejona86 committed Mar 21, 2022
    Copy the full SHA
    658d4ce View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2022

  1. Fix style; oops copy/paste

    ejona86 committed Mar 22, 2022
    Copy the full SHA
    28bc057 View commit details
    Browse the repository at this point in the history