diff --git a/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/ThreadLeakCheckRule.java b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/ThreadLeakCheckRule.java index d9dafac51c..ec641ea1a7 100644 --- a/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/ThreadLeakCheckRule.java +++ b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/ThreadLeakCheckRule.java @@ -248,6 +248,8 @@ public class ThreadLeakCheckRule extends TestWatcher { return true; } else if (javaVendor.contains("IBM") && threadName.equals("MemoryPoolMXBean notification dispatcher")) { return true; + } else if (javaVendor.contains("IBM") && threadName.contains("MemoryMXBean")) { + return true; } else if (threadName.contains("globalEventExecutor")) { return true; } else if (threadName.contains("threadDeathWatcher")) {