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
If the withGRPCClient API is called with an empty handleClient closure then it is possible to hit the The client has stopped and can only be started once. precondition in its internal state machine. The reason for this is that beginGracefulShutdown() is called before runConnections().
To reproduce
Write a test that does this
try await GRPCClient.withGRPCClient(....) {}
Expected behaviour
We should handle this gracefully
The text was updated successfully, but these errors were encountered:
This can't (easily) be fixed in a sensible way: if the body of withGRPCClient returns quickly and never uses the client then there's an inherent race here. Given this is a weird edge case I think the right move is to just improve the diagnostic.
Describe the bug
If the
withGRPCClient
API is called with an emptyhandleClient
closure then it is possible to hit theThe client has stopped and can only be started once.
precondition in its internal state machine. The reason for this is thatbeginGracefulShutdown()
is called beforerunConnections()
.To reproduce
Write a test that does this
Expected behaviour
We should handle this gracefully
The text was updated successfully, but these errors were encountered: