We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
akka-persistence-jdbc version: 5.0.1
Scala doc of deleteMessages specifies
Permanently deletes all persistent messages with sequence numbers less than or equal toSequenceNr.
Events less than the specified toSequenceNr are deleted only - query still returns last event that should also have been deleted.
See DeleteTest in #550
The text was updated successfully, but these errors were encountered:
I did some investigation, and adding
.filter(!_.deleted)
to
akka-persistence-jdbc/core/src/main/scala/akka/persistence/jdbc/query/dao/ReadJournalQueries.scala
Lines 37 to 47 in 2f7ec79
would fix the test
Sorry, something went wrong.
No branches or pull requests
Versions used
akka-persistence-jdbc version: 5.0.1
Expected Behavior
Scala doc of deleteMessages specifies
Actual Behavior
Events less than the specified toSequenceNr are deleted only - query still returns last event that should also have been deleted.
Reproducible Test Case
See DeleteTest in #550
The text was updated successfully, but these errors were encountered: