-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Ensure that UTF8 is used as the default encoding in RESTEasy Reactive #22644
Conversation
The failures have nothing to do with this PR. We will need #22646 to fix them |
This workflow status is outdated as a new workflow run has been triggered. Failing Jobs - Building 2a534e8
Full information is available in the Build summary check run. Failures⚙️ JVM Tests - JDK 11 #- Failing: extensions/hibernate-reactive/deployment extensions/resteasy-reactive/rest-client-reactive/deployment
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/panache/hibernate-reactive-panache-common/deployment extensions/panache/hibernate-reactive-panache/deployment and 16 more 📦 extensions/hibernate-reactive/deployment✖
📦 extensions/resteasy-reactive/rest-client-reactive/deployment✖
⚙️ JVM Tests - JDK 11 Windows #- Failing: extensions/resteasy-reactive/rest-client-reactive/deployment
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/resteasy-reactive/rest-client-reactive-jackson/deployment extensions/resteasy-reactive/rest-client-reactive-kotlin-serialization/deployment and 8 more 📦 extensions/resteasy-reactive/rest-client-reactive/deployment✖
⚙️ JVM Tests - JDK 17 #- Failing: extensions/hibernate-reactive/deployment extensions/resteasy-reactive/rest-client-reactive/deployment
! Skipped: extensions/oidc-client-reactive-filter/deployment extensions/panache/hibernate-reactive-panache-common/deployment extensions/panache/hibernate-reactive-panache/deployment and 16 more 📦 extensions/hibernate-reactive/deployment✖
📦 extensions/resteasy-reactive/rest-client-reactive/deployment✖
|
This was already being done when producing text/plain, but in cases where application/json was being used and the actual entity was a String, the encoding was not being specified Fixes: quarkusio#21700
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, thanks!
This was already being done when producing
text/plain
, but in caseswhere
application/json
was being used and the actual entity was a String,the encoding was not being specified
Fixes: #21700