Remove tail cleanup call to avoid double decrement (#6089)

This commit is contained in:
Daniel Nelson 2019-07-08 14:48:47 -07:00 committed by GitHub
parent c5d8e63a0f
commit 601f499126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -294,7 +294,6 @@ func (l *LogParserPlugin) Stop() {
if err != nil {
log.Printf("E! Error stopping tail on file %s\n", t.Filename)
}
t.Cleanup()
}
close(l.done)
l.wg.Wait()

View File

@ -9,7 +9,6 @@ import (
"sync"
"github.com/influxdata/tail"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/internal/globpath"
"github.com/influxdata/telegraf/plugins/inputs"
@ -213,9 +212,6 @@ func (t *Tail) Stop() {
}
}
for _, tailer := range t.tailers {
tailer.Cleanup()
}
t.wg.Wait()
}