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 43dd9bcee75c100af2e75c7145225de5c7667255 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Thu Aug 29 12:37:28 2024 +0000 CAMEL-21143 disable unstable camel-tahu test that blocks the CI --- .../java/org/apache/camel/component/tahu/TahuEdgeProducerIT.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/camel-tahu/src/test/java/org/apache/camel/component/tahu/TahuEdgeProducerIT.java b/components/camel-tahu/src/test/java/org/apache/camel/component/tahu/TahuEdgeProducerIT.java index 922762d791a..fbfc08d37a9 100644 --- a/components/camel-tahu/src/test/java/org/apache/camel/component/tahu/TahuEdgeProducerIT.java +++ b/components/camel-tahu/src/test/java/org/apache/camel/component/tahu/TahuEdgeProducerIT.java @@ -22,14 +22,17 @@ import java.util.concurrent.TimeUnit; import org.apache.camel.CamelContext; import org.apache.camel.ProducerTemplate; import org.apache.camel.test.infra.core.annotations.RouteFixture; +import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.EnumSource; import static org.junit.jupiter.api.Assertions.assertTrue; +@DisabledIfSystemProperty(named = "ci.env.name", matches = ".*", + disabledReason = "CAMEL-21143: requires too much resources and blocks the CI") public class TahuEdgeProducerIT extends TahuTestSupport { - static enum EdgeNodeTestProfile { + enum EdgeNodeTestProfile { SESSION_ESTABLISHMENT_TEST("edge SessionEstablishmentTest IamHost G2 E2 D2", false, 0), SESSION_TERMINATION_TEST("edge SessionTerminationTest IamHost G2 E2 D2", false, 3),