This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch camel-4.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.18.x by this push:
new 42b0b2c3a204 CAMEL-23646 - Disable SjmsConnectionRecoveryTest on s390x
42b0b2c3a204 is described below
commit 42b0b2c3a204e3a0d43ceda925bce155cc181551
Author: Aurélien Pupier <[email protected]>
AuthorDate: Tue Jun 2 09:10:10 2026 +0200
CAMEL-23646 - Disable SjmsConnectionRecoveryTest on s390x
Signed-off-by: Aurélien Pupier <[email protected]>
---
.../org/apache/camel/component/sjms/SjmsConnectionRecoveryTest.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/components/camel-sjms/src/test/java/org/apache/camel/component/sjms/SjmsConnectionRecoveryTest.java
b/components/camel-sjms/src/test/java/org/apache/camel/component/sjms/SjmsConnectionRecoveryTest.java
index 140735bd954f..a6b3cf6ac2a1 100644
---
a/components/camel-sjms/src/test/java/org/apache/camel/component/sjms/SjmsConnectionRecoveryTest.java
+++
b/components/camel-sjms/src/test/java/org/apache/camel/component/sjms/SjmsConnectionRecoveryTest.java
@@ -35,6 +35,7 @@ import org.apache.camel.test.junit5.CamelTestSupport;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
import static org.awaitility.Awaitility.await;
import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -53,6 +54,8 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
* Uses a real Artemis broker over TCP (via Testcontainers) so that connection
close truly kills sessions and consumers,
* matching the behavior of Oracle AQ and other remote JMS providers.
*/
+@DisabledOnOs(architectures = { "s390x" },
+ disabledReason = "The container image cannot be started for this
test. Maybe because it is using the ArtemisContainer instead fo the service.")
public class SjmsConnectionRecoveryTest extends CamelTestSupport {
private static final String SJMS_QUEUE_NAME =
"sjms:queue:SjmsConnectionRecoveryTest";