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:
|
pre-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
sharedDefinitions: ${{ steps.filter.outputs.shared }}
|
sharedDefinitions: ${{ steps.filter.outputs.sharedDefinitions }}
|
||||||
shared: ${{ steps.filter.outputs.shared }}
|
shared: ${{ steps.filter.outputs.shared }}
|
||||||
processer: ${{ steps.filter.outputs.processer }}
|
processer: ${{ steps.filter.outputs.processer }}
|
||||||
converter: ${{ steps.filter.outputs.converter }}
|
converter: ${{ steps.filter.outputs.converter }}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
[versions]
|
[versions]
|
||||||
eventi = "1.0-rc23"
|
eventi = "1.0-rc24"
|
||||||
exfl = "1.0-rc1"
|
exfl = "1.0-rc1"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
|||||||
@ -15,7 +15,7 @@ object EventStore: EventStore {
|
|||||||
override fun getPersistedEventsAfter(timestamp: LocalDateTime): List<PersistedEvent> {
|
override fun getPersistedEventsAfter(timestamp: LocalDateTime): List<PersistedEvent> {
|
||||||
val result = withTransaction {
|
val result = withTransaction {
|
||||||
EventsTable.selectAll()
|
EventsTable.selectAll()
|
||||||
.where { EventsTable.persistedAt greater timestamp }
|
.where { EventsTable.persistedAt greaterEq timestamp }
|
||||||
.map {
|
.map {
|
||||||
PersistedEvent(
|
PersistedEvent(
|
||||||
id = it[EventsTable.id].value.toLong(),
|
id = it[EventsTable.id].value.toLong(),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user