You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test/xds: wait for server to enter SERVING mode before sending the first RPC (#9003)
Fixes#9002
xDS-enabled gRPC servers start accepting connections on the
`net.Listener` passed to them, but will close the accepted connections
immediately as long as it hasn't yet received good configuration from
the management server. This could be the failure the client is seeing in
the failing log:
```
xds_server_filter_state_retention_test.go:468: EmptyCall() failed: rpc error: code = Unavailable desc = write tcp 127.0.0.1:38168->127.0.0.1:37463: write: broken pipe
```
This PR fixes the flaky test by waiting for the server to enter
`SERVING` mode before sending the first RPC.
RELEASE NOTES: none
0 commit comments