guhilling commented on issue #4362:
URL: https://github.com/apache/camel-quarkus/issues/4362#issuecomment-1373420187

   I tried setting "quarkus.camel.main.routes-discovery.enabled=false". But now 
the routes from "createRouteBuilder" also aren't run: I try to use it to 
configure specific RouteBuilders from "src/main" like this:
   ```    @Override
       protected RoutesBuilder createRouteBuilder() {
           return new RouteBuilder() {
               @Override
               public void configure() throws Exception {
                   new SampleDataRouteBuilder().configure();
                   new OrderLogRouteBuilder().configure();
               }
           };
       }
   ```


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to