mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
remove uneeded check
This commit is contained in:
parent
38938ba493
commit
790cf30fcb
|
@ -155,11 +155,6 @@ func (m *Manager) updateGroup(poolKey poolKey, tgs []*targetgroup.Group) {
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
|
|
||||||
m.actionCh <- func(ctx context.Context) {
|
m.actionCh <- func(ctx context.Context) {
|
||||||
if tgs == nil {
|
|
||||||
close(done)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tg := range tgs {
|
for _, tg := range tgs {
|
||||||
if tg != nil { // Some Discoverers send nil target group so need to check for it to avoid panics.
|
if tg != nil { // Some Discoverers send nil target group so need to check for it to avoid panics.
|
||||||
if _, ok := m.targets[poolKey]; !ok {
|
if _, ok := m.targets[poolKey]; !ok {
|
||||||
|
|
Loading…
Reference in a new issue