control/controlclient: make Auto.Shutdown call Direct.Close

Updates #3488

Signed-off-by: Maisem Ali <maisem@tailscale.com>
pull/4106/head
Maisem Ali 2 years ago committed by Maisem Ali
parent 0f37317664
commit 91a8cdc84b

@ -677,6 +677,7 @@ func (c *Auto) Shutdown() {
c.mu.Lock()
inSendStatus := c.inSendStatus
closed := c.closed
direct := c.direct
if !closed {
c.closed = true
c.statusFunc = nil
@ -685,6 +686,9 @@ func (c *Auto) Shutdown() {
c.logf("client.Shutdown: inSendStatus=%v", inSendStatus)
if !closed {
if direct != nil {
direct.Close()
}
c.unregisterHealthWatch()
close(c.quit)
c.cancelAuth()

Loading…
Cancel
Save