From 6c30e386032616bb7f20c5b6c6004c4ec82698ec Mon Sep 17 00:00:00 2001 From: irfan sharif Date: Mon, 17 Jan 2022 23:09:40 -0500 Subject: [PATCH] server: de-flake TestStatusAPICombinedTransactions This test got a lot slower under the span configs infrastructure, something we're investigating as part of #74919. Until then, prevent this test from spoiling builds. Release note: None --- pkg/server/status_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/server/status_test.go b/pkg/server/status_test.go index f3ba499aace6..a59ea2bf9edd 100644 --- a/pkg/server/status_test.go +++ b/pkg/server/status_test.go @@ -1478,6 +1478,7 @@ func TestStatusAPICombinedTransactions(t *testing.T) { defer log.Scope(t).Close(t) params, _ := tests.CreateTestServerParams() + params.Knobs.SpanConfig = &spanconfig.TestingKnobs{ManagerDisableJobCreation: true} // TODO(irfansharif): #74919. testCluster := serverutils.StartNewTestCluster(t, 3, base.TestClusterArgs{ ServerArgs: params, })