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
Akka.Net 1.3.11
.NET Core Windows
Call SqlReadJournal.CurrentEventsByTag with empty an event log throws ArgumentException: To offset must be a positive number
The text was updated successfully, but these errors were encountered:
ptjhuang
changed the title
CurrentEventsByTag throws error when event log is empty
CurrentEventsByTag does not return more than a 100 events
Jan 17, 2019
CurrentEventsByTag should return all events, then complete the stream, once it reached the end. MaxBufferSize only describes the size of the batched, in which we internally poll for the data from the database.
In the current implementation CurrentEventsByTag polls the database only once, hence why the query.journal.sql.max-buffer-size acts as a limit here. Potential bug then?
Akka.Net 1.3.11
.NET Core Windows
Call SqlReadJournal.CurrentEventsByTag with empty an event log throws ArgumentException: To offset must be a positive number
Test Case: https://gist.github.com/ptjhuang/fc44fa9ca80e87fe7835f71e06aa40da
Looked at the Scala version and it looks different. Is this a bug?
Scala version
.NET version
The text was updated successfully, but these errors were encountered: