Martin Kouba
Martin Kouba
> @mkouba Is this still a valid workaround? Yes, it is :-)
I can confirm that I'm not able to reproduce the issue with the [original reproducer](https://github.com/mkouba/quarkus-quickstarts/commit/f8748fc4175a164773d8ca4f62538f093d70cc26) anymore. It seems to be fixed in 2.11 (not sure where... HR, Mutiny, hibernate-reactive-panache). Although...
> I don't think we can close this issue, unless the session is actually recreated or replaced in case of error. +1 > If that's not the case, even if...
I'm not aware of any updates :shrug:. You can use a util method to make the Quarkus 3 workaround a little bit less verbose: ``` Uni recoverWithNewSession(Supplier action) { return...
> For example, if I'm using @ReactiveTransactional / @WithTransaction at a REST endpoint and an exception happens on transaction commit, I won't be able to catch the exception in my...
> This is how you reproduce this issue without langchain4j [quarkusio/quarkus@3f870b0](https://github.com/quarkusio/quarkus/commit/3f870b0d7058c7ea1de559b3c12db85291e6fe81) ; WDYT [@mkouba](https://github.com/mkouba) ? Thoughts are enough, I can have a look into this over the weekend. My understanding...
> Do you basically say that SR Context propagation should do the trick or what? @michalvavrik I'm not sure to be honest. From what I see in the log the...
> @mkouba @Ladicek this seems to be caused by [this](https://github.com/quarkusio/quarkus/blob/cc6b08d6818deb440189dc3ee8bfd3752386a71f/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/staticmethods/InterceptedStaticMethodsProcessor.java#L458-L460) code not properly copying over the annotations. Yes, this is wrong. It blindly copies all annotations declared on the method...
> THanks @mkouba sorry I've been busy on something else No problem at all!
> We want to make sure `@Priority` is respected and this unit test is failing showing `@Priority` is not respected. The priority should be respected (although it's a non-standard feature)....