This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 7328c4b960a43908b3b9309528556e4da79b8857 Author: Jiri Ondrusek <ondrusek.j...@gmail.com> AuthorDate: Mon Jun 9 14:29:11 2025 +0200 Disabled CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest test because of CAMEL-22155 --- .../CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/main-devmode/src/test/java/org/apache/camel/quarkus/main/CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest.java b/integration-tests/main-devmode/src/test/java/org/apache/camel/quarkus/main/CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest.java index f516438058..5dd0c05da9 100644 --- a/integration-tests/main-devmode/src/test/java/org/apache/camel/quarkus/main/CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest.java +++ b/integration-tests/main-devmode/src/test/java/org/apache/camel/quarkus/main/CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest.java @@ -29,6 +29,7 @@ import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.Asset; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.JavaArchive; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.RegisterExtension; @@ -102,6 +103,7 @@ public class CamelMainRoutesIncludePatternWithDefaultLocationsDevModeTest { } @Test + @Disabled //https://issues.apache.org/jira/browse/CAMEL-22155 public void testRoutesDiscoveryFromDefaultLocation() { await().atMost(10, TimeUnit.SECONDS).untilAsserted(() -> { Response res = RestAssured.when().get("/test/describe").thenReturn();