We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feee240 commit dabbfd8Copy full SHA for dabbfd8
pkg/querier/tail.go
@@ -87,8 +87,7 @@ func (t *Tailer) loop() {
87
88
droppedEntries := make([]loghttp.DroppedEntry, 0)
89
90
- stopped := t.stopped.Load()
91
- for !stopped {
+ for !t.stopped.Load() {
92
select {
93
case <-checkConnectionTicker.C:
94
// Try to reconnect dropped ingesters and connect to new ingesters
0 commit comments