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 2020/03/26 18:58:33 UTC

[activemq-artemis] branch master updated: NO-JIRA Improving SoakPagingTest

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6d2b17d  NO-JIRA Improving SoakPagingTest
6d2b17d is described below

commit 6d2b17d23a6df5e47896ab709efa33fbeee34e01
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Thu Mar 26 14:38:57 2020 -0400

    NO-JIRA Improving SoakPagingTest
---
 .../activemq/artemis/tests/smoke/replicationflow/SoakPagingTest.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/replicationflow/SoakPagingTest.java b/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/replicationflow/SoakPagingTest.java
index d89fd4a..a4af52d 100644
--- a/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/replicationflow/SoakPagingTest.java
+++ b/tests/smoke-tests/src/test/java/org/apache/activemq/artemis/tests/smoke/replicationflow/SoakPagingTest.java
@@ -90,8 +90,9 @@ public class SoakPagingTest extends SmokeTestBase {
          Thread.sleep(15000);
 
          System.exit(consumed.get());
-      } catch (Exception e) {
+      } catch (Throwable e) {
          e.printStackTrace();
+         System.exit(-1);
       }
 
    }