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
Looking at the code in OptimisticEventStream.OptimisticEventStream
if (minRevision > 0 && _committed.Count == 0)
{
throw new StreamNotFoundException();
}
we can have a error in the following case:
create an aggregate
add some events
snapshot it.
destroy the repository and its cache
reload the aggregate from a new repository
The text was updated successfully, but these errors were encountered:
Looking at the code in OptimisticEventStream.OptimisticEventStream
if (minRevision > 0 && _committed.Count == 0)
{
throw new StreamNotFoundException();
}
we can have a error in the following case:
destroy the repository and its cache
The text was updated successfully, but these errors were encountered: