Martin Kouba
Martin Kouba
> A power user with a custom library could use `quarkus.native.additional-build-args` ? @Sanne You can't use the `quarkus.native.additional-build-args` to "remove" an option, or? I mean, you can only add stuff.
> [@mkouba](https://github.com/mkouba) ah I see what you mean, sorry - but why would you remove it, could you elaborate on the scenario? @Sanne Well, removing this option is functionally equivalent...
@Olivier-aka-Raiden Would you care to send a pull reuqest? The fix should be fairly straightforward, i.e. register the `NonconcurrentInvokerJob` here: https://github.com/quarkusio/quarkus/blob/main/extensions/quartz/deployment/src/main/java/io/quarkus/quartz/deployment/QuartzProcessor.java#L204-L268
> In https://github.com/quarkusio/quarkus/pull/50987/files#r2524146520 we raised the issue that CDI says that interceptors are not applied to super-type methods (at least that's how I understood it). I think that there's another...
@ia3andy I looked at `VertxHttpHotReplacementSetup#handleHotReplacementRequest(RoutingContext)` and it seems to be a timing issue. [This check](https://github.com/quarkusio/quarkus/blob/3.30.2/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/devmode/VertxHttpHotReplacementSetup.java#L138-L141) is just "best effort" and it's good enough unless `quarkus-web-bundler` is used, where a change...
> No issue with just one browser, and no issue with two tabs in chrome (very weird) FTR I was able to reproduce the problem with multiple tabs on Firefox.
@vinod-afero Could you pls try to collect the build metrics of your app, i.e. with `-Dquarkus.debug.dump-build-metrics=true`? See https://github.com/quarkusio/quarkus/blob/main/TROUBLESHOOTING.md#analysing-build-steps-execution-time for mor info about configuration. You can also use https://github.com/mkouba/quarkus-build-report to generate...
So apparently the problem is in `io.quarkus.deployment.steps.ReflectiveHierarchyStep#build`. This build step takes **101096 ms** and if you look at the _Build Steps Concurrent Execution Chart_, you can see that it blocks...
FYI I've updated the [quarkus-build-report](https://github.com/mkouba/quarkus-build-report) to include the number of build items in the report.
> The way to probably reproduce this would be > - Get the latest version of keycloak - 26.4.5 as we speak > - Implement & deploy a custom keycloak...