From 87066b85c074d8cb4d40c44bb1bf274e16e08a18 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Mon, 6 Mar 2023 08:54:34 -0800 Subject: [PATCH] Mute one more disruption test (#94298) In #94207 we missed one disruption test still mimicking GC. --- .../java/org/elasticsearch/discovery/MasterDisruptionIT.java | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/internalClusterTest/java/org/elasticsearch/discovery/MasterDisruptionIT.java b/server/src/internalClusterTest/java/org/elasticsearch/discovery/MasterDisruptionIT.java index f47bcb44fe383..b59755c3e5396 100644 --- a/server/src/internalClusterTest/java/org/elasticsearch/discovery/MasterDisruptionIT.java +++ b/server/src/internalClusterTest/java/org/elasticsearch/discovery/MasterDisruptionIT.java @@ -46,6 +46,7 @@ public class MasterDisruptionIT extends AbstractDisruptionTestCase { * Test that cluster recovers from a long GC on master that causes other nodes to elect a new one */ public void testMasterNodeGCs() throws Exception { + assumeFalse("jdk20 removed thread suspend/resume", Runtime.version().feature() >= 20); List nodes = startCluster(3); String oldMasterNode = internalCluster().getMasterName();