mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 06:45:49 +00:00
control/controlclient: call direct.Close after map requests are complete
This was causing a flake in another repo. Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
parent
61cdcf4082
commit
ba2c0c3145
@ -686,15 +686,15 @@ func (c *Auto) Shutdown() {
|
|||||||
|
|
||||||
c.logf("client.Shutdown: inSendStatus=%v", inSendStatus)
|
c.logf("client.Shutdown: inSendStatus=%v", inSendStatus)
|
||||||
if !closed {
|
if !closed {
|
||||||
if direct != nil {
|
|
||||||
direct.Close()
|
|
||||||
}
|
|
||||||
c.unregisterHealthWatch()
|
c.unregisterHealthWatch()
|
||||||
close(c.quit)
|
close(c.quit)
|
||||||
c.cancelAuth()
|
c.cancelAuth()
|
||||||
<-c.authDone
|
<-c.authDone
|
||||||
c.cancelMapUnsafely()
|
c.cancelMapUnsafely()
|
||||||
<-c.mapDone
|
<-c.mapDone
|
||||||
|
if direct != nil {
|
||||||
|
direct.Close()
|
||||||
|
}
|
||||||
c.logf("Client.Shutdown done.")
|
c.logf("Client.Shutdown done.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user