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 4bf4a4d NO-JIRA removing Transaction Failover from run-examples.sh
script
4bf4a4d is described below
commit 4bf4a4d3f32da4d070e21604c152517cfacb651c
Author: Clebert Suconic <[email protected]>
AuthorDate: Mon Sep 13 17:49:18 2021 -0400
NO-JIRA removing Transaction Failover from run-examples.sh script
the transaction failover was always supposed to fail (as it's not
guaranteed the transaction will be available at the replica or failover)
it was meant as an example only.. and it's not valid to validate in CI
scenarios. I have a CI using this script and it has always failed 1 in 5. Time
to go from the script.
---
artemis-distribution/src/test/scripts/run-examples.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/artemis-distribution/src/test/scripts/run-examples.sh
b/artemis-distribution/src/test/scripts/run-examples.sh
index 4ce9762..e5e09f7 100755
--- a/artemis-distribution/src/test/scripts/run-examples.sh
+++ b/artemis-distribution/src/test/scripts/run-examples.sh
@@ -124,9 +124,9 @@ cd non-transaction-failover; mvn verify; cd ..
cd replicated-failback; mvn verify; cd ..
cd replicated-failback-static; mvn verify; cd ..
cd replicated-multiple-failover; mvn verify; cd ..
-cd replicated-transaction-failover; mvn verify; cd ..
+#cd replicated-transaction-failover; mvn verify; cd ..
cd scale-down; mvn verify; cd ..
-cd transaction-failover; mvn verify; cd ..
+#cd transaction-failover; mvn verify; cd ..
cd $ARTEMIS_HOME/examples/protocols/amqp/
cd queue; mvn verify; cd ..