From b2a2a2d2a2891cb70c7db0b1ec59718c6a530bbc Mon Sep 17 00:00:00 2001 From: Nathan VanBenschoten Date: Mon, 8 Jan 2024 13:55:24 -0500 Subject: [PATCH] kv: skip TestStoreLeaseTransferTimestampCacheTxnRecord Informs #117486. Skip until I can fix the test. Release note: None --- pkg/kv/kvserver/client_lease_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/kv/kvserver/client_lease_test.go b/pkg/kv/kvserver/client_lease_test.go index 3023bb90ddd7..e9107b9ce616 100644 --- a/pkg/kv/kvserver/client_lease_test.go +++ b/pkg/kv/kvserver/client_lease_test.go @@ -659,6 +659,7 @@ func TestStoreLeaseTransferTimestampCacheRead(t *testing.T) { func TestStoreLeaseTransferTimestampCacheTxnRecord(t *testing.T) { defer leaktest.AfterTest(t)() defer log.Scope(t).Close(t) + skip.WithIssue(t, 117486) ctx := context.Background() tc := testcluster.StartTestCluster(t, 3, base.TestClusterArgs{}) defer tc.Stopper().Stop(ctx)