Make sure someone wakes up

This commit is contained in:
Neil Alexander 2021-06-28 11:18:11 +01:00
parent b63f699f1b
commit 8fd878c75a
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -13,7 +13,7 @@ type fifoQueue struct {
func newFIFOQueue() *fifoQueue {
q := &fifoQueue{
notifs: make(chan struct{}),
notifs: make(chan struct{}, 1),
}
return q
}