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
For the org.openkilda.wfm.topology.switchmanager.service.impl.SpeakerWorkerService
There might be a case of timeout event so that handleTimeout() method is called.
And inside this method keyToRequest map is cleared properly, but chunkedMessageIdsPerRequest cache is not cleared.
So it might be a case where we are handling the chunked responses and in a half way though we might not fully receive the chunked chain of messages. In that case we expect to receive timeout event. This should lead to handleTimeout() method call, which should also clear chunkedMessageIdsPerRequest map.
Implement proper cache(chunkedMessageIdsPerRequest) removal for appropriate request key.
The text was updated successfully, but these errors were encountered:
For the org.openkilda.wfm.topology.switchmanager.service.impl.SpeakerWorkerService
There might be a case of timeout event so that
handleTimeout()
method is called.And inside this method
keyToRequest
map is cleared properly, butchunkedMessageIdsPerRequest
cache is not cleared.So it might be a case where we are handling the chunked responses and in a half way though we might not fully receive the chunked chain of messages. In that case we expect to receive timeout event. This should lead to
handleTimeout()
method call, which should also clearchunkedMessageIdsPerRequest
map.Implement proper cache(chunkedMessageIdsPerRequest) removal for appropriate request key.
The text was updated successfully, but these errors were encountered: