mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 13:05:46 +00:00
cmd/tailscale/cli: avoid a spammy log message on SIGINT
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
670838c45f
commit
6da812b4cf
@ -24,6 +24,7 @@
|
|||||||
"tailscale.com/ipn"
|
"tailscale.com/ipn"
|
||||||
"tailscale.com/paths"
|
"tailscale.com/paths"
|
||||||
"tailscale.com/safesocket"
|
"tailscale.com/safesocket"
|
||||||
|
"tailscale.com/syncs"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ActLikeCLI reports whether a GUI application should act like the
|
// ActLikeCLI reports whether a GUI application should act like the
|
||||||
@ -109,6 +110,8 @@ func fatalf(format string, a ...interface{}) {
|
|||||||
socket string
|
socket string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var gotSignal syncs.AtomicBool
|
||||||
|
|
||||||
func connect(ctx context.Context) (net.Conn, *ipn.BackendClient, context.Context, context.CancelFunc) {
|
func connect(ctx context.Context) (net.Conn, *ipn.BackendClient, context.Context, context.CancelFunc) {
|
||||||
c, err := safesocket.Connect(rootArgs.socket, 41112)
|
c, err := safesocket.Connect(rootArgs.socket, 41112)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -133,6 +136,7 @@ func connect(ctx context.Context) (net.Conn, *ipn.BackendClient, context.Context
|
|||||||
signal.Reset(syscall.SIGINT, syscall.SIGTERM)
|
signal.Reset(syscall.SIGINT, syscall.SIGTERM)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
gotSignal.Set(true)
|
||||||
c.Close()
|
c.Close()
|
||||||
cancel()
|
cancel()
|
||||||
}()
|
}()
|
||||||
@ -150,7 +154,9 @@ func pump(ctx context.Context, bc *ipn.BackendClient, conn net.Conn) {
|
|||||||
if ctx.Err() != nil {
|
if ctx.Err() != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Printf("ReadMsg: %v\n", err)
|
if !gotSignal.Get() {
|
||||||
|
log.Printf("ReadMsg: %v\n", err)
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
bc.GotNotifyMsg(msg)
|
bc.GotNotifyMsg(msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user