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
A bug on Aug 1, 2024 was discovered where the WebSocket client (CometWsClient) added a block height n+1 to the event queue before an earlier block height n. This caused the indexer to process the later block height before the earlier block height. An immediate fix was throwing an error before this happened, but we need to look into why the WebSocket client did this since the queue add() logic isn't asynchronous and WebSocket delivers messages in FIFO order.
The text was updated successfully, but these errors were encountered:
A bug on Aug 1, 2024 was discovered where the WebSocket client (
CometWsClient
) added a block heightn+1
to the event queue before an earlier block heightn
. This caused the indexer to process the later block height before the earlier block height. An immediate fix was throwing an error before this happened, but we need to look into why the WebSocket client did this since the queueadd()
logic isn't asynchronous and WebSocket delivers messages in FIFO order.The text was updated successfully, but these errors were encountered: