You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2022/11/09 21:50:06 UTC

[activemq-artemis] branch main updated: ARTEMIS-4084 Fixing CriticalAnalyzer policy on Test

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new ae4475201e ARTEMIS-4084 Fixing CriticalAnalyzer policy on Test
ae4475201e is described below

commit ae4475201e35695ebf6f8a1874744fe535a8be13
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Wed Nov 9 16:49:50 2022 -0500

    ARTEMIS-4084 Fixing CriticalAnalyzer policy on Test
---
 .../artemis/tests/soak/client/ClientCrashMassiveRollbackTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientCrashMassiveRollbackTest.java b/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientCrashMassiveRollbackTest.java
index 9e5bbbef65..e4641f9696 100644
--- a/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientCrashMassiveRollbackTest.java
+++ b/tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/client/ClientCrashMassiveRollbackTest.java
@@ -56,7 +56,7 @@ public class ClientCrashMassiveRollbackTest extends ActiveMQTestBase {
       config.setCriticalAnalyzerTimeout(10000);
       config.setCriticalAnalyzerCheckPeriod(5000);
       config.setConnectionTTLOverride(5000);
-      config.setCriticalAnalyzerPolicy(CriticalAnalyzerPolicy.LOG);
+      config.setCriticalAnalyzerPolicy(CriticalAnalyzerPolicy.SHUTDOWN);
       server = createServer(false, config);
       server.start();
    }