From b574a8a6323ca5459dd843a9ea74e671d0ce761b Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Tue, 30 Sep 2025 08:01:28 +0100 Subject: [PATCH] derp/derphttp: mark TestBreakWatcherConnRecv as flaky Updates #17355 Signed-off-by: Alex Chan --- derp/derphttp/derphttp_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/derp/derphttp/derphttp_test.go b/derp/derphttp/derphttp_test.go index 36c11f4fc..d9409fc1d 100644 --- a/derp/derphttp/derphttp_test.go +++ b/derp/derphttp/derphttp_test.go @@ -20,6 +20,7 @@ import ( "testing" "time" + "tailscale.com/cmd/testwrapper/flakytest" "tailscale.com/derp" "tailscale.com/derp/derphttp" "tailscale.com/derp/derpserver" @@ -267,6 +268,7 @@ func newWatcherClient(t *testing.T, watcherPrivateKey key.NodePrivate, serverToW // updates after a different thread breaks and reconnects the connection, while // the watcher is waiting on recv(). func TestBreakWatcherConnRecv(t *testing.T) { + flakytest.Mark(t, "https://github.com/tailscale/tailscale/issues/17355") // TODO(bradfitz): use synctest + memnet instead // Set the wait time before a retry after connection failure to be much lower.