-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow injection of a reactive session not wrapped in a Mutiny/CompletionStage #10433
Conversation
Looks fine, but some CI tests failed on DB2. It seems similar to that same problem I had when testing DB2 locally; I never had time to investigate that but I'd say that a DB2 driver issue shouldn't get in the way to fix the missing CDI factories... @aguibert could you have a look at the DB2 failure? @DavideD perhaps change this PR to not run ITs on DB2 ? I think the PR is fine, but we can't have CI broken for all other devs. |
@Sanne I looked into the CI failures and the stuff that's failing is the new tests being added in this PR, both for JVM and native image mode (see log snippets below). Also, the new tests are failing for MySQL and DB2, so it's not a problem specific to DB2. I think we should review these changes more before merging. My current thought is that we have an intermittent timing issue of the tests running too early and perhaps not waiting for the test app to be ready. If something was going wrong with the DB drivers or hibernate reactive, we'd get some useful output from Quarkus, but currently we're just getting a 404. JVM mode
Native mode (DB2 and MySQL are failing)
|
Also, ignore the red herring NPE's you see from |
@gsmet there's no strong need to backport this, I suspect this is just the first of many polishing PRs. But I'll leave that to you. |
Well, it doesn't hurt if we can make it work. TBH, the main reason why I marked it is because I would like to integrate the quickstart PR ASAP :). |
GOt it. It's a silly error in the tests. I'm going to fix it |
…y/CompletionStage
OK, I think I've now fixed the issues. Let's wait for CI to confirm |
There is an error on the Windows machine but it doesn't seem related to the PR, any idea? |
It's definitely not related, I'll merge this. |
Fixes #10432