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/12/16 10:33:08 UTC

[activemq-artemis] branch main updated: ARTEMIS-3085 Fixing IOCriticalErrorListenerTest

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 9816e1b999 ARTEMIS-3085 Fixing IOCriticalErrorListenerTest
9816e1b999 is described below

commit 9816e1b999682ea2b362317dfa55c04d579edfed
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Fri Dec 16 05:32:59 2022 -0500

    ARTEMIS-3085 Fixing IOCriticalErrorListenerTest
---
 .../artemis/tests/integration/server/IOCriticalErrorListenerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/server/IOCriticalErrorListenerTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/server/IOCriticalErrorListenerTest.java
index f700b66acf..0528d60155 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/server/IOCriticalErrorListenerTest.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/server/IOCriticalErrorListenerTest.java
@@ -28,7 +28,7 @@ public class IOCriticalErrorListenerTest extends ActiveMQTestBase {
 
    @Test
    public void simpleTest() throws Exception {
-      server = createServer(false, createDefaultNettyConfig());
+      server = createServer(true, createDefaultNettyConfig());
       final CountDownLatch latch = new CountDownLatch(1);
       server.registerIOCriticalErrorListener((code, message, file) -> latch.countDown());
       server.start();