ffang commented on pull request #37: URL: https://github.com/apache/camel-quarkus-examples/pull/37#issuecomment-854825304
Thanks @jamesnetherton ! I realized that CI failure in timer-log-main so I investigated it, which turned out to be also a health check path change issue after upgrading to Camel 3.10. ``` --- a/timer-log-main/src/test/java/org/acme/timer/TimerLogMainTest.java +++ b/timer-log-main/src/test/java/org/acme/timer/TimerLogMainTest.java @@ -74,7 +74,7 @@ public class TimerLogMainTest { try { int status = RestAssured.given() .port(port) - .get("/health") + .get("/q/health") .then() .extract() .statusCode(); ``` This change can fix it, I will send another PR soon, thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org