mirror of https://github.com/status-im/consul.git
command/agent: Stop HTTP checks when the check is removed
This commit is contained in:
parent
6a2d763d5c
commit
50853265dd
|
@ -742,6 +742,10 @@ func (a *Agent) RemoveCheck(checkID string, persist bool) error {
|
|||
check.Stop()
|
||||
delete(a.checkMonitors, checkID)
|
||||
}
|
||||
if check, ok := a.checkHTTPs[checkID]; ok {
|
||||
check.Stop()
|
||||
delete(a.checkHTTPs, checkID)
|
||||
}
|
||||
if check, ok := a.checkTTLs[checkID]; ok {
|
||||
check.Stop()
|
||||
delete(a.checkTTLs, checkID)
|
||||
|
|
Loading…
Reference in New Issue