From 7f3b4567e46d5186688f28ab889e4a8ef7fb8d40 Mon Sep 17 00:00:00 2001 From: Bin Shi Date: Fri, 12 May 2023 18:19:55 +0800 Subject: [PATCH] Disable TestGetMinTS due to https://github.com/tikv/pd/issues/6453 Signed-off-by: Bin Shi --- tests/integrations/tso/client_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integrations/tso/client_test.go b/tests/integrations/tso/client_test.go index 204534e7ffa..e1f1de98989 100644 --- a/tests/integrations/tso/client_test.go +++ b/tests/integrations/tso/client_test.go @@ -245,6 +245,10 @@ func (suite *tsoClientTestSuite) TestDiscoverTSOServiceWithLegacyPath() { // TestGetMinTS tests the correctness of GetMinTS. func (suite *tsoClientTestSuite) TestGetMinTS() { + // Skip this test for the time being due to https://github.com/tikv/pd/issues/6453 + // TODO: fix it #6453 + suite.T().SkipNow() + var wg sync.WaitGroup wg.Add(tsoRequestConcurrencyNumber * len(suite.clients)) for i := 0; i < tsoRequestConcurrencyNumber; i++ {