jamesnetherton commented on issue #6856: URL: https://github.com/apache/camel-quarkus/issues/6856#issuecomment-2527717930
It'd help a lot if you could capture the stack trace for where the event loop is being blocked. This should enable more detail to be output from the `BlockedThreadChecker`: ```java void onComponentAdd(@Observes ComponentAddEvent event) { if (event.getComponent() instanceof VertxHttpComponent component) { VertxOptions vertxOptions = new VertxOptions(); vertxOptions.setWarningExceptionTime(TimeUnit.SECONDS.toNanos(1L)); component.setVertxOptions(vertxOptions); } } ``` -- 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