Disconnect the client if the output buffer fills up

This commit is contained in:
Deluan 2020-12-12 18:26:30 -05:00
parent 17833cd9d2
commit 8b92796a5c
2 changed files with 12 additions and 7 deletions

View file

@ -161,7 +161,7 @@ func (s *scanner) RescanAll(ctx context.Context, fullRescan bool) error {
return ErrAlreadyScanning return ErrAlreadyScanning
} }
isScanning.Set(true) isScanning.Set(true)
defer func() { isScanning.Set(false) }() defer isScanning.Set(false)
defer s.cacheWarmer.Flush(context.Background()) defer s.cacheWarmer.Flush(context.Background())
var hasError bool var hasError bool

View file

@ -36,6 +36,7 @@ type (
username string username string
userAgent string userAgent string
channel messageChan channel messageChan
done chan struct{}
} }
) )
@ -124,9 +125,12 @@ func (b *broker) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Flush the data immediately instead of buffering it for later. // Flush the data immediately instead of buffering it for later.
flusher.Flush() flusher.Flush()
case <-ctx.Done(): case <-c.done:
log.Trace(ctx, "Closing event stream connection", "client", c.String()) log.Trace(ctx, "Closing event stream connection", "client", c.String())
return return
case <-ctx.Done():
log.Trace(ctx, "Client closed the connection", "client", c.String())
return
} }
} }
} }
@ -176,13 +180,14 @@ func (b *broker) listen() {
case event := <-b.publish: case event := <-b.publish:
// We got a new event from the outside! // We got a new event from the outside!
// Send event to all connected clients // Send event to all connected clients
for client := range b.clients { for c := range b.clients {
log.Trace("Putting event on client's queue", "client", client.String(), "event", event) log.Trace("Putting event on client's queue", "client", c.String(), "event", event)
// Use non-blocking send // Use non-blocking send. If cannot send, terminate the client's connection
select { select {
case client.channel <- event: case c.channel <- event:
default: default:
log.Warn("Could not send message to client", "client", client.String(), "event", event) log.Warn("Could not send message to client", "client", c.String(), "event", event)
c.done <- struct{}{}
} }
} }