mirror of
https://github.com/tailscale/tailscale.git
synced 2025-12-13 02:28:08 +00:00
control/controlclient: tweak a couple error messages
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
@@ -1311,10 +1311,10 @@ func tsmpPing(logf logger.Logf, c *http.Client, pr *tailcfg.PingRequest, pinger
|
|||||||
return errors.New("invalid PingRequest with no URL")
|
return errors.New("invalid PingRequest with no URL")
|
||||||
}
|
}
|
||||||
if pr.IP.IsZero() {
|
if pr.IP.IsZero() {
|
||||||
return fmt.Errorf("PingRequest with no proper IP got %v", pr.IP)
|
return errors.New("PingRequest without IP")
|
||||||
}
|
}
|
||||||
if !strings.Contains(pr.Types, "TSMP") {
|
if !strings.Contains(pr.Types, "TSMP") {
|
||||||
return fmt.Errorf("PingRequest with no TSMP in Types, got : %v", pr.Types)
|
return fmt.Errorf("PingRequest with no TSMP in Types, got %q", pr.Types)
|
||||||
}
|
}
|
||||||
|
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
|
|||||||
Reference in New Issue
Block a user