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 <[email protected]>
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);
}
}