0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-05-20 14:23:49 +02:00

Fix panics on closed channel sends

This commit is contained in:
Neil Alexander 2022-01-04 14:07:04 +00:00
parent 9755494a98
commit 85ede6d64b
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -119,7 +119,11 @@ func (r *Inputer) InputRoomEvents(
} else {
hooks.Run(hooks.KindNewEventPersisted, inputRoomEvent.Event)
}
responses <- err
select {
case <-ctx.Done():
default:
responses <- err
}
})
}
for i := 0; i < len(request.InputRoomEvents); i++ {