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
}
isScanning.Set(true)
defer func() { isScanning.Set(false) }()
defer isScanning.Set(false)
defer s.cacheWarmer.Flush(context.Background())
var hasError bool