ignore client ids

This commit is contained in:
Elio Bischof
2023-06-29 18:43:02 +02:00
parent 3a338cdb44
commit d5d365d154
6 changed files with 84 additions and 51 deletions

View File

@@ -100,13 +100,13 @@ func NewProjectionHandler(
reduceScheduledPseudoEvent: reduceScheduledPseudoEvent,
}
go func(subscribe bool) {
go func() {
<-initialized
if subscribe {
if !h.reduceScheduledPseudoEvent {
go h.subscribe(ctx)
}
go h.schedule(ctx)
}(!h.reduceScheduledPseudoEvent)
}()
return h
}