From 06c3a1d73fff21e283a91efec6ed911f400cd9b7 Mon Sep 17 00:00:00 2001 From: Nick Ripley <97066770+nsrip-dd@users.noreply.github.com> Date: Mon, 16 May 2022 09:53:50 -0400 Subject: [PATCH] profiler: disable TestStopLatency (#1295) See issue #1294. --- profiler/profiler_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/profiler_test.go b/profiler/profiler_test.go index d4a8e993d2..3686068095 100644 --- a/profiler/profiler_test.go +++ b/profiler/profiler_test.go @@ -184,6 +184,7 @@ func TestStartStopIdempotency(t *testing.T) { // TestStopLatency tries to make sure that calling Stop() doesn't hang, i.e. // that ongoing profiling or upload operations are immediately canceled. func TestStopLatency(t *testing.T) { + t.Skip("broken test, see issue #1294") p, err := newProfiler( WithURL("http://invalid.invalid/"), WithPeriod(1000*time.Millisecond),