This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/camel-main by this push:
     new c930c242db Fixed management
c930c242db is described below

commit c930c242dbf61007c8c2809e3d7543819d1154f6
Author: Jiri Ondrusek <ondrusek.j...@gmail.com>
AuthorDate: Wed Sep 24 09:56:00 2025 +0200

    Fixed management
---
 .../java/org/apache/camel/quarkus/component/management/it/Routes.java   | 2 +-
 .../apache/camel/quarkus/component/management/it/ManagementTest.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/integration-tests/management/src/main/java/org/apache/camel/quarkus/component/management/it/Routes.java
 
b/integration-tests/management/src/main/java/org/apache/camel/quarkus/component/management/it/Routes.java
index bb0582981c..22c4c005d2 100644
--- 
a/integration-tests/management/src/main/java/org/apache/camel/quarkus/component/management/it/Routes.java
+++ 
b/integration-tests/management/src/main/java/org/apache/camel/quarkus/component/management/it/Routes.java
@@ -27,7 +27,7 @@ public class Routes extends RouteBuilder {
 
         from("direct:start").routeId("hello").setBody().constant("Hello 
World");
 
-        from("direct:step").routeId("hellostep").step("hellostep")
+        from("direct:step").routeId("hellosteps").step("hellostep")
                 .doTry()
                 .setBody().constant("Hello Step")
                 .process(new Processor() {
diff --git 
a/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
 
b/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
index 15cbd25c12..41b9f95d7b 100644
--- 
a/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
+++ 
b/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
@@ -86,7 +86,7 @@ class ManagementTest {
     @Test
     public void testDumpStepStatsAsXml() {
         RestAssured.given()
-                .queryParam("name", 
"org.apache.camel:*,type=routes,name=\"hellostep\"")
+                .queryParam("name", 
"org.apache.camel:*,type=routes,name=\"hellosteps\"")
                 .queryParam("operation", "dumpStepStatsAsXml")
                 .queryParam("paramTypes", List.of("boolean"))
                 .queryParam("paramValues", List.of("true"))

Reply via email to