From 581e916653ff3db572705b9468d874523dfac556 Mon Sep 17 00:00:00 2001 From: Shubham Dhama Date: Mon, 6 Oct 2025 14:12:55 +0000 Subject: [PATCH] kvnemesis: disable DRPC for tests The 'TestKVNemesisMultiNode*' tests are showing flakiness when DRPC is enabled, and this can be reproduced under stress. Until the root cause is found, it's best to disable DRPC for these tests. Release note: none Epic: none --- pkg/kv/kvnemesis/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kv/kvnemesis/main_test.go b/pkg/kv/kvnemesis/main_test.go index fb26171885ce..12f64efae21d 100644 --- a/pkg/kv/kvnemesis/main_test.go +++ b/pkg/kv/kvnemesis/main_test.go @@ -30,7 +30,7 @@ func TestMain(m *testing.M) { )() defer serverutils.TestingGlobalDRPCOption( - base.TestDRPCEnabledRandomly, + base.TestDRPCDisabled, )() os.Exit(m.Run())