fix blocking error during startup when in demo mode (#838)

This commit is contained in:
Hayden 2024-03-05 09:44:43 -06:00 committed by GitHub
parent af9aa239af
commit f621d3ad5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 37 additions and 12 deletions

View file

@ -35,7 +35,7 @@ type EventBus struct {
func New() *EventBus {
return &EventBus{
ch: make(chan eventData, 10),
ch: make(chan eventData, 100),
subscribers: map[Event][]func(any){
EventLabelMutation: {},
EventLocationMutation: {},