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
When the gRPC server is shutdown, it closes all opened streams (events, units, ...) as follows:
The stream waits for
a) an item (event / unit update) to forward to the client
b) a shutdown signal
Whatever it receives first, is handled first
If it receives an item, it is send to the client
It is possible that (1) is not run again until the client read the previous item from the stream from (3). If this theory holds true, it would be possible to block the server shutdown by establishing a connection but never reading items from it.
The text was updated successfully, but these errors were encountered:
When the gRPC server is shutdown, it closes all opened streams (events, units, ...) as follows:
a) an item (event / unit update) to forward to the client
b) a shutdown signal
It is possible that (1) is not run again until the client read the previous item from the stream from (3). If this theory holds true, it would be possible to block the server shutdown by establishing a connection but never reading items from it.
The text was updated successfully, but these errors were encountered: