mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-12-25 23:19:06 +01:00
Allow to shutdown redfish receiver during metric read
This commit is contained in:
parent
31c5c89a5a
commit
8c73095548
@ -146,7 +146,17 @@ func (r *RedfishReceiver) Start() {
|
||||
}
|
||||
|
||||
// Distribute client configs to workers
|
||||
clientConfigLoop:
|
||||
for i := range r.config.ClientConfigs {
|
||||
// Check done channel status
|
||||
select {
|
||||
case _, ok := <-r.done:
|
||||
if !ok {
|
||||
break clientConfigLoop
|
||||
}
|
||||
default:
|
||||
}
|
||||
|
||||
workerInput <- i
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user