Fixes + version
This commit is contained in:
parent
75acee51fd
commit
5dfa73af08
2
.github/workflows/build-v5.yml
vendored
2
.github/workflows/build-v5.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
pre-check:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
sharedDefinitions: ${{ steps.filter.outputs.shared }}
|
||||
sharedDefinitions: ${{ steps.filter.outputs.sharedDefinitions }}
|
||||
shared: ${{ steps.filter.outputs.shared }}
|
||||
processer: ${{ steps.filter.outputs.processer }}
|
||||
converter: ${{ steps.filter.outputs.converter }}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
[versions]
|
||||
eventi = "1.0-rc23"
|
||||
eventi = "1.0-rc24"
|
||||
exfl = "1.0-rc1"
|
||||
|
||||
[libraries]
|
||||
|
||||
@ -15,7 +15,7 @@ object EventStore: EventStore {
|
||||
override fun getPersistedEventsAfter(timestamp: LocalDateTime): List<PersistedEvent> {
|
||||
val result = withTransaction {
|
||||
EventsTable.selectAll()
|
||||
.where { EventsTable.persistedAt greater timestamp }
|
||||
.where { EventsTable.persistedAt greaterEq timestamp }
|
||||
.map {
|
||||
PersistedEvent(
|
||||
id = it[EventsTable.id].value.toLong(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user