This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 3c1b8f72529 Skip health test when using Strimzi (#17541) 3c1b8f72529 is described below commit 3c1b8f72529d391aed2cfb663efaee8ea948d13f Author: Dale Fu <35507428+dale...@users.noreply.github.com> AuthorDate: Mon Mar 24 09:26:01 2025 -0400 Skip health test when using Strimzi (#17541) --- .../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" },