Martin Kouba

Results 269 comments of Martin Kouba

> Seems like we have a lot of `Arc.container().instance(...).get()`... But that's ok if we expect the bean to be available. It's suboptimal if we know that a bean might not...

Why do you use the reactive mailer on a vertx worker thread? I mean it would make sense to use the imperative/blocking version on a worker thread and the reactive...

> The reproducer is already attached to the report, under 'How to Reproduce'. Ah, sorry. I completely missed this. > Initially I've used the blocking mailer but this is just...

I think that the `An error occurred during delivery of the @BeforeDestroyed(ApplicationScoped.class) event` warning is not the cause of the issue. In the provided log file I can see the...

@michalszynkiewicz CC because of [`RestClientReactiveCDIWrapperBase`](https://github.com/quarkusio/quarkus/issues/25236#issuecomment-1119299809) ;-)

@raguser is it still a problem with the latest version of quarkus?

> I just upgraded to latest version of Quarkus from 2.7. I am getting the same error. > > ``` > javax.enterprise.inject.CreationException: Synthetic bean instance for io.quarkus.scheduler.common.runtime.SchedulerContext not initialized yet:...

> var realms = info:keycloakRealms??.split(",") You can't use anything like this in a qute template. You can use [`{#let}`](https://quarkus.io/guides/qute-reference#let_section) to define a variable scoped to a section though.

@arvind-das if you reference the `blogs` in the template more than once you might need to "memoize" the `Uni` first. The reason is that any time you evaluate a qute...