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
SnapshotStore (or ShardSnapshotStore) should reply with SnapshotNotFound if it has no EntitySnapshot and is saving an EntitySnapshot. For example, when an entity (ReplicatedEntityBehavior) is recovering, the entity waits for a response from ShardSnapshotStore. If ShardSnapshotStore replies with SnapshotNotFound, the entity can continue its recovery. If ShardSnapshotStore replies with nothing, the entity might get recovery timed out. This case might rarely happen because the entity might be already recovered when SnapshotStore receives a SaveSnapshot command.
SnapshotStore
(orShardSnapshotStore
) should reply withSnapshotNotFound
if it has noEntitySnapshot
and is saving anEntitySnapshot
. For example, when an entity (ReplicatedEntityBehavior
) is recovering, the entity waits for a response fromShardSnapshotStore
. IfShardSnapshotStore
replies withSnapshotNotFound
, the entity can continue its recovery. IfShardSnapshotStore
replies with nothing, the entity might get recovery timed out. This case might rarely happen because the entity might be already recovered whenSnapshotStore
receives aSaveSnapshot
command.Related code:
The text was updated successfully, but these errors were encountered: