mirror of
https://github.com/tailscale/tailscale.git
synced 2025-12-01 07:22:04 +01:00
This compares the warnings we actually care about and skips the unstable warnings and the changes with no warnings. Fixes #17635 Signed-off-by: Claus Lensbøl <claus@tailscale.com>
27 lines
1.3 KiB
Go
27 lines
1.3 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package tsconst
|
|
|
|
const (
|
|
HealthWarnableUpdateAvailable = "update-available"
|
|
HealthWarnableSecurityUpdateAvailable = "security-update-available"
|
|
HealthWarnableIsUsingUnstableVersion = "is-using-unstable-version"
|
|
HealthWarnableNetworkStatus = "network-status"
|
|
HealthWarnableWantRunningFalse = "wantrunning-false"
|
|
HealthWarnableLocalLogConfigError = "local-log-config-error"
|
|
HealthWarnableLoginState = "login-state"
|
|
HealthWarnableNotInMapPoll = "not-in-map-poll"
|
|
HealthWarnableNoDERPHome = "no-derp-home"
|
|
HealthWarnableNoDERPConnection = "no-derp-connection"
|
|
HealthWarnableDERPTimedOut = "derp-timed-out"
|
|
HealthWarnableDERPRegionError = "derp-region-error"
|
|
HealthWarnableNoUDP4Bind = "no-udp4-bind"
|
|
HealthWarnableMapResponseTimeout = "mapresponse-timeout"
|
|
HealthWarnableTLSConnectionFailed = "tls-connection-failed"
|
|
HealthWarnableMagicsockReceiveFuncError = "magicsock-receive-func-error"
|
|
HealthWarnableTestWarnable = "test-warnable"
|
|
HealthWarnableApplyDiskConfig = "apply-disk-config"
|
|
HealthWarnableWarmingUp = "warming-up"
|
|
)
|