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
commit 722eac4d296b07c1c1e4f464b1d393d523d5f26d Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Nov 11 10:30:24 2024 +0100 (chores) camel-etcd3: prevent manual test from running This blocks the test on multiple architectures --- .../java/org/apache/camel/component/etcd3/AggregateEtcd3ManualTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-etcd3/src/test/java/org/apache/camel/component/etcd3/AggregateEtcd3ManualTest.java b/components/camel-etcd3/src/test/java/org/apache/camel/component/etcd3/AggregateEtcd3ManualTest.java index 030e50bc5bd..d68db099909 100644 --- a/components/camel-etcd3/src/test/java/org/apache/camel/component/etcd3/AggregateEtcd3ManualTest.java +++ b/components/camel-etcd3/src/test/java/org/apache/camel/component/etcd3/AggregateEtcd3ManualTest.java @@ -20,6 +20,7 @@ import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.etcd3.processor.aggregate.Etcd3AggregationRepository; import org.apache.camel.component.etcd3.support.Etcd3TestSupport; import org.apache.camel.component.mock.MockEndpoint; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; /** @@ -29,6 +30,7 @@ import org.junit.jupiter.api.Test; * of message 1,2 and 4 as they use the same correlation key. * <p/> */ +@Disabled("This is a manual test and should not run automatically") class AggregateEtcd3ManualTest extends Etcd3TestSupport { @Test
