Browse Source

unregister source when the target is empty

Signed-off-by: Augustin Husson <husson.augustin@gmail.com>
pull/4575/head
Augustin Husson 6 years ago
parent
commit
9970e4e7e4
  1. 5
      discovery/manager.go

5
discovery/manager.go

@ -232,6 +232,11 @@ func (m *Manager) updateGroup(poolKey poolKey, tgs []*targetgroup.Group) {
m.targets[poolKey] = make(map[string]*targetgroup.Group)
}
m.targets[poolKey][tg.Source] = tg
// Clear the key in the case where the targets is empty.
if tg.Targets == nil || len(tg.Targets) <= 0 {
delete(m.targets[poolKey], tg.Source)
}
}
}
}

Loading…
Cancel
Save