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

client: include details about GOAWAYs in status messages #4316

Merged
merged 11 commits into from
Apr 24, 2021
Prev Previous commit
Next Next commit
skip handler-tls config for max age goaway error test
  • Loading branch information
apolcyn committed Apr 2, 2021
commit 7dee6ae90faff68cbd41e344a5a9df5ce980a571
6 changes: 6 additions & 0 deletions test/end2end_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1377,6 +1377,12 @@ func testDetailedConnectionCloseErrorPropagatesToRPCError(t *testing.T, e env) {

func (s) TestDetailedGoawayErrorOnGracefulClosePropagatesToRPCError(t *testing.T) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as in the other PR about using StubServer and not enumerating the test environments.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

for _, e := range listTestEnv() {
if e.name == "handler-tls" {
// TODO(apolcyn): the server doesn't terminate the connection due
// to max connection age under the handler-tls configuration, is
// this WAI?
continue
}
testDetailedGoawayErrorOnGracefulClosePropagatesToRPCError(t, e)
}
}
Expand Down