mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
ipn/ipnlocal: fix data race in tests
We can observe a data race in tests when logging after a test is finished. `b.onHealthChange` is called in a goroutine after being registered with `health.Tracker.RegisterWatcher`, which calls callbacks in `setUnhealthyLocked` in a new goroutine. See: https://github.com/tailscale/tailscale/actions/runs/9672919302/job/26686038740 Updates #12054 Signed-off-by: Andrew Dunham <andrew@du.nham.ca> Change-Id: Ibf22cc994965d88a9e7236544878d5373f91229e
This commit is contained in:
parent
da078b4c09
commit
30f8d8199a
@ -29,6 +29,7 @@
|
|||||||
"tailscale.com/ipn/store/mem"
|
"tailscale.com/ipn/store/mem"
|
||||||
"tailscale.com/tailcfg"
|
"tailscale.com/tailcfg"
|
||||||
"tailscale.com/tsd"
|
"tailscale.com/tsd"
|
||||||
|
"tailscale.com/tstest"
|
||||||
"tailscale.com/types/logger"
|
"tailscale.com/types/logger"
|
||||||
"tailscale.com/types/logid"
|
"tailscale.com/types/logid"
|
||||||
"tailscale.com/types/netmap"
|
"tailscale.com/types/netmap"
|
||||||
@ -668,7 +669,7 @@ func newTestBackend(t *testing.T) *LocalBackend {
|
|||||||
var logf logger.Logf = logger.Discard
|
var logf logger.Logf = logger.Discard
|
||||||
const debug = true
|
const debug = true
|
||||||
if debug {
|
if debug {
|
||||||
logf = logger.WithPrefix(t.Logf, "... ")
|
logf = logger.WithPrefix(tstest.WhileTestRunningLogger(t), "... ")
|
||||||
}
|
}
|
||||||
|
|
||||||
sys := &tsd.System{}
|
sys := &tsd.System{}
|
||||||
|
Loading…
Reference in New Issue
Block a user