mirror of https://github.com/status-im/consul.git
Fix alias check leak
Preivously when alias check was removed it would not be stopped nor cleaned up from the associated aliasChecks map. This means that any time an alias check was deregistered we would leak a goroutine for CheckAlias.run() because the stopCh would never be closed. This issue mostly affects service mesh deployments on platforms where the client agent is mostly static but proxy services come and go regularly, since by default sidecars are registered with an alias check.
This commit is contained in:
parent
b8bd7a3058
commit
f4cc4577ca
|
@ -3263,7 +3263,10 @@ func (a *Agent) cancelCheckMonitors(checkID structs.CheckID) {
|
|||
check.Stop()
|
||||
delete(a.checkH2PINGs, checkID)
|
||||
}
|
||||
|
||||
if check, ok := a.checkAliases[checkID]; ok {
|
||||
check.Stop()
|
||||
delete(a.checkAliases, checkID)
|
||||
}
|
||||
}
|
||||
|
||||
// updateTTLCheck is used to update the status of a TTL check via the Agent API.
|
||||
|
|
|
@ -1912,7 +1912,7 @@ node_name = "` + a.Config.NodeName + `"
|
|||
}
|
||||
}
|
||||
|
||||
func TestAgent_AddCheck_Alias(t *testing.T) {
|
||||
func TestAgent_Alias_AddRemove(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("too slow for testing.Short")
|
||||
}
|
||||
|
@ -1922,9 +1922,12 @@ func TestAgent_AddCheck_Alias(t *testing.T) {
|
|||
a := NewTestAgent(t, "")
|
||||
defer a.Shutdown()
|
||||
|
||||
cid := structs.NewCheckID("aliashealth", nil)
|
||||
|
||||
testutil.RunStep(t, "add check", func(t *testing.T) {
|
||||
health := &structs.HealthCheck{
|
||||
Node: "foo",
|
||||
CheckID: "aliashealth",
|
||||
CheckID: cid.ID,
|
||||
Name: "Alias health check",
|
||||
Status: api.HealthCritical,
|
||||
}
|
||||
|
@ -1934,17 +1937,24 @@ func TestAgent_AddCheck_Alias(t *testing.T) {
|
|||
err := a.AddCheck(health, chk, false, "", ConfigSourceLocal)
|
||||
require.NoError(t, err)
|
||||
|
||||
// Ensure we have a check mapping
|
||||
sChk := requireCheckExists(t, a, "aliashealth")
|
||||
sChk := requireCheckExists(t, a, cid.ID)
|
||||
require.Equal(t, api.HealthCritical, sChk.Status)
|
||||
|
||||
chkImpl, ok := a.checkAliases[structs.NewCheckID("aliashealth", nil)]
|
||||
chkImpl, ok := a.checkAliases[cid]
|
||||
require.True(t, ok, "missing aliashealth check")
|
||||
require.Equal(t, "", chkImpl.RPCReq.Token)
|
||||
|
||||
cs := a.State.CheckState(structs.NewCheckID("aliashealth", nil))
|
||||
cs := a.State.CheckState(cid)
|
||||
require.NotNil(t, cs)
|
||||
require.Equal(t, "", cs.Token)
|
||||
})
|
||||
|
||||
testutil.RunStep(t, "remove check", func(t *testing.T) {
|
||||
require.NoError(t, a.RemoveCheck(cid, false))
|
||||
|
||||
requireCheckMissing(t, a, cid.ID)
|
||||
requireCheckMissingMap(t, a.checkAliases, cid.ID)
|
||||
})
|
||||
}
|
||||
|
||||
func TestAgent_AddCheck_Alias_setToken(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue