This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch camel-4.10.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.10.x by this push: new a12e1110a07 Skip health test when using Strimzi (#17560) a12e1110a07 is described below commit a12e1110a0791ce7ef961851b834eff51ce0f603 Author: Dale Fu <35507428+dale...@users.noreply.github.com> AuthorDate: Mon Mar 24 13:19:55 2025 -0400 Skip health test when using Strimzi (#17560) --- .../component/kafka/integration/health/KafkaConsumerHealthCheckIT.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/health/KafkaConsumerHealthCheckIT.java b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/health/KafkaConsumerHealthCheckIT.java index 0524d041f47..239296614f7 100644 --- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/health/KafkaConsumerHealthCheckIT.java +++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/health/KafkaConsumerHealthCheckIT.java @@ -44,6 +44,7 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInstance; import org.junit.jupiter.api.TestMethodOrder; import org.junit.jupiter.api.Timeout; +import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.api.condition.EnabledOnOs; import org.junit.jupiter.api.condition.OS; import org.slf4j.Logger; @@ -57,6 +58,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue; @Timeout(30) @TestInstance(TestInstance.Lifecycle.PER_CLASS) @TestMethodOrder(MethodOrderer.OrderAnnotation.class) +@DisabledIfSystemProperty(named = "kafka.instance.type", matches = "local-strimzi-container", + disabledReason = "Test infra Kafka runs the Strimzi containers in a way that conflicts with multiple concurrent images") @Tags({ @Tag("health") }) @EnabledOnOs(value = { OS.LINUX, OS.MAC, OS.FREEBSD, OS.OPENBSD, OS.WINDOWS }, architectures = { "amd64", "aarch64", "s390x" },