From af45b065ad1046d40fe4d5a4d8d3a9f61a1b9128 Mon Sep 17 00:00:00 2001 From: Zach Lite Date: Tue, 20 Jun 2023 14:26:48 +0000 Subject: [PATCH] statusccl: skip flaky TenantStatusAPI tests Informs #92382, #99770, #99559 Epic: none Release note: None --- pkg/ccl/serverccl/statusccl/tenant_status_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/ccl/serverccl/statusccl/tenant_status_test.go b/pkg/ccl/serverccl/statusccl/tenant_status_test.go index 700cb2fcbb7f..308a44fb4774 100644 --- a/pkg/ccl/serverccl/statusccl/tenant_status_test.go +++ b/pkg/ccl/serverccl/statusccl/tenant_status_test.go @@ -76,6 +76,7 @@ func TestTenantStatusAPI(t *testing.T) { tdb.Exec(t, "SET CLUSTER SETTING kv.closed_timestamp.side_transport_interval = '10 ms'") t.Run("reset_sql_stats", func(t *testing.T) { + skip.UnderDeadlockWithIssue(t, 99559) testResetSQLStatsRPCForTenant(ctx, t, testHelper) }) @@ -112,6 +113,7 @@ func TestTenantStatusAPI(t *testing.T) { }) t.Run("txn_id_resolution", func(t *testing.T) { + skip.UnderDeadlockWithIssue(t, 99770) testTxnIDResolutionRPC(ctx, t, testHelper) }) @@ -132,6 +134,7 @@ func TestTenantStatusAPI(t *testing.T) { }) t.Run("tenant_span_stats", func(t *testing.T) { + skip.UnderStressWithIssue(t, 99559) skip.UnderDeadlockWithIssue(t, 99770) testTenantSpanStats(ctx, t, testHelper) }) @@ -1381,6 +1384,7 @@ func testTenantRangesRPC(_ context.Context, t *testing.T, helper serverccl.Tenan }) t.Run("test tenant ranges pagination", func(t *testing.T) { + skip.UnderStressWithIssue(t, 92382) ctx := context.Background() resp1, err := tenantA.TenantRanges(ctx, &serverpb.TenantRangesRequest{ Limit: 1,