github-vet / github-vet/rangeloop-pointer-findings
cloudinsight/cloudinsight-agent: agent/agent.go; 23 LoC
- Dominant language
- No language data
- Stars
- 0
- Forks
- 0
- PR merge metrics
- PR metrics pending
Description
Found a possible issue in [cloudinsight/cloudinsight-agent](https://www.github.com/cloudinsight/cloudinsight-agent) at [agent/agent.go](https://github.com/cloudinsight/cloudinsight-agent/blob/8b5340db9ddbf070b05acb91e5f948230e33fd59/agent/agent.go#L84-L106)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable plug used in defer or goroutine at line 90
[Click here to see the code in its original context.](https://github.com/cloudinsight/cloudinsight-agent/blob/8b5340db9ddbf070b05acb91e5f948230e33fd59/agent/agent.go#L84-L106)
Click here to show the 23 line(s) of Go which triggered the analyzer.
```go
for i, plug := range rp.Plugins {
wg.Add(1)
go func() {
defer panicRecover(rp)
defer wg.Done()
done <- plug.Check(agg)
agg.Flush()
}()
select {
case err := <-done:
if err != nil {
log.Errorf("ERROR to check plugin instance [%s#%d]: %s", rp.Name, i, err)
}
case <-ticker.C:
log.Infof("ERROR: plugin instance [%s#%d] took longer to collect than "+
"collection interval (%s)",
rp.Name, i, timeout)
case <-shutdown:
return
}
}
```
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 8b5340db9ddbf070b05acb91e5f948230e33fd59
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.