-
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
Fix null query parameter handling in generated RestEasy Reactive clients #25870
Fix null query parameter handling in generated RestEasy Reactive clients #25870
Conversation
|
That is for the client, not the server |
Yes. This PR is for the client and the PR/Issue I referenced are about using a Map in the client. I must be completely missing something here lol. |
The failure you are getting is from the Server where you are trying to use |
Also adds missing query handling tests.
ab857bc
to
46b91cb
Compare
I knew I was missing something obvious... I reinstated the tests for map but I'm using |
Great, thanks! |
Also adds missing query handling tests.
The tests for using aMap<>
as a query param via theRestQuery
annotation are commented out. This is because I cannot figure out how to get these to work. If I uncomment them then the Quarkus refuses to build the client with an error ofFailed to find converter for java.util.Map
; I am not sure if this is itself a bug or user error.