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
In the function fetchLocal it's being checked if the order is in the store: if not a callback is being put in the outstandingRequests hashmap. in this way when a message arrive the maybeCompleteLongPollGet can invoke the callback and complete the function.
However after testing the presence of the order in the store (line 200) the message related to that order might have arrived in the meanwhile, but the callback is not yet int the hasmap, so the response is never completed.
The text was updated successfully, but these errors were encountered:
In the function fetchLocal it's being checked if the order is in the store: if not a callback is being put in the outstandingRequests hashmap. in this way when a message arrive the maybeCompleteLongPollGet can invoke the callback and complete the function.
However after testing the presence of the order in the store (line 200) the message related to that order might have arrived in the meanwhile, but the callback is not yet int the hasmap, so the response is never completed.
The text was updated successfully, but these errors were encountered: