This is an automated email from the ASF dual-hosted git repository. orpiske 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 aaee6a08ce1 (chores) camel-kafka: prevent very slow test from running on Github CI aaee6a08ce1 is described below commit aaee6a08ce191ad74d071cb0aaa9fd14cfb56270 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Wed Apr 10 14:45:31 2024 +0000 (chores) camel-kafka: prevent very slow test from running on Github CI --- .../component/kafka/integration/KafkaBreakOnFirstErrorSeekIssueIT.java | 1 + 1 file changed, 1 insertion(+) diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaBreakOnFirstErrorSeekIssueIT.java b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaBreakOnFirstErrorSeekIssueIT.java index ca9ca18051a..92b408e8dea 100644 --- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaBreakOnFirstErrorSeekIssueIT.java +++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaBreakOnFirstErrorSeekIssueIT.java @@ -54,6 +54,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue; @EnabledOnOs(value = { OS.LINUX, OS.MAC, OS.FREEBSD, OS.OPENBSD, OS.WINDOWS }, architectures = { "amd64", "aarch64", "s390x" }, disabledReason = "This test does not run reliably on ppc64le") +@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", disabledReason = "Too slow to run on Github CI") class KafkaBreakOnFirstErrorSeekIssueIT extends BaseExclusiveKafkaTestSupport { public static final String ROUTE_ID = "breakOnFirstError-19894";