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
The response tracking logic in the streaming endpoints does not reset the blocksSinceLastMessage variable when messages are sent. This could result in unnecessary heartbeat messages getting sent. This is fairly benign, but we may as well fix it.
The response tracking logic in the streaming endpoints does not reset the
blocksSinceLastMessage
variable when messages are sent. This could result in unnecessary heartbeat messages getting sent. This is fairly benign, but we may as well fix it.For example:
flow-go/engine/access/state_stream/backend/handler.go
Lines 366 to 374 in e9c6ac8
This should be
This ensures that
blocksSinceLastMessage
is reset whenever a response is sent.The text was updated successfully, but these errors were encountered: