netcheck: don't log ErrGatewayRange
"skipping portmap; gateway range likely lacks support" is really spammy on cloud systems, and not very useful in debugging. Fixes https://github.com/tailscale/tailscale/issues/3034 Signed-off-by: Denton Gentry <dgentry@tailscale.com>
This commit is contained in:
parent
d883747d8b
commit
5d6198adee
|
@ -704,7 +704,12 @@ func (rs *reportState) probePortMapServices() {
|
||||||
|
|
||||||
res, err := rs.c.PortMapper.Probe(context.Background())
|
res, err := rs.c.PortMapper.Probe(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
rs.c.logf("probePortMapServices: %v", err)
|
if !errors.Is(err, portmapper.ErrGatewayRange) {
|
||||||
|
// "skipping portmap; gateway range likely lacks support"
|
||||||
|
// is not very useful, and too spammy on cloud systems.
|
||||||
|
// If there are other errors, we want to log those.
|
||||||
|
rs.c.logf("probePortMapServices: %v", err)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue