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
Setup writes 3 events to the journal - arrange phase of the test deletes the first two - assertion expects only the third one back. Instead we got the first event straight away.
Sounds to me like Mongo being Mongo, but I'll take a look real fast.
And determined cause:
Ah, the problem is actually with the TestActor in the Akka.Persistence.Query.TCK
We send a reply back that the message has been deleted without actually knowing if the journal has done that or not.
Proposed fix: Probably need to wait until we get a DeleteMessagesSuccess or a DeleteMessagesFailure message back, since DeleteMessages(long seqNo) is an asynchronous operation.
The text was updated successfully, but these errors were encountered:
Version: v1.4.0-beta2
Found this while investigating akkadotnet/Akka.Persistence.MongoDB#77 (comment)
Issue is this:
And determined cause:
Proposed fix: Probably need to wait until we get a
DeleteMessagesSuccess
or aDeleteMessagesFailure
message back, sinceDeleteMessages(long seqNo)
is an asynchronous operation.The text was updated successfully, but these errors were encountered: