From a3c4a9bd18ee62292e6fd10b39f5848430ab7e41 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Tue, 19 Aug 2025 18:04:20 +0100 Subject: [PATCH] [TESTS] remote-write: Make TestShutdown non-parallel to reduce flakes. Resolves #17045. Signed-off-by: Bryan Boreham --- storage/remote/queue_manager_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/remote/queue_manager_test.go b/storage/remote/queue_manager_test.go index 4461ca4b30..a02d3dd3b0 100644 --- a/storage/remote/queue_manager_test.go +++ b/storage/remote/queue_manager_test.go @@ -466,7 +466,7 @@ func TestSampleDeliveryOrder(t *testing.T) { } func TestShutdown(t *testing.T) { - t.Parallel() + // Not t.Parallel() because the test became flaky; see https://github.com/prometheus/prometheus/issues/17045 deadline := 1 * time.Second c := NewTestBlockedWriteClient()