Move toTheSinks out of for loop

This commit is contained in:
Holger Obermaier 2022-02-14 18:53:37 +01:00
parent 416a94aceb
commit a3ad9d0cb0

View File

@ -100,8 +100,6 @@ func (sm *sinkManager) Start() {
cclog.ComponentDebug("SinkManager", "DONE")
}
for {
toTheSinks := func(p lp.CCMetric) {
// Send received metric to all outputs
cclog.ComponentDebug("SinkManager", "WRITE", p)
@ -112,6 +110,7 @@ func (sm *sinkManager) Start() {
}
}
for {
select {
case <-sm.done:
done()