-
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
Ensure suspend methods in RESTEasy Reactive use the same default media types as regular methods #18171
Conversation
This workflow status is outdated as a new workflow run has been triggered. 🚫 This workflow run has been cancelled. Failing Jobs - Building 2e7852d
Full information is available in the Build summary check run. Test Failures⚙️ JVM Tests - JDK 11 #📦 integration-tests/resteasy-reactive-kotlin/prod-mode✖ ⚙️ JVM Tests - JDK 11 Windows #📦 integration-tests/resteasy-reactive-kotlin/prod-mode✖ ⚙️ JVM Tests - JDK 16 #📦 integration-tests/resteasy-reactive-kotlin/prod-mode✖ |
@@ -36,7 +36,7 @@ public void test() { | |||
|
|||
@Path("hello") | |||
@Blocking | |||
public Object hello(kotlin.coroutines.Continuation<?> cont) { | |||
public Object hello(kotlin.coroutines.Continuation<? super Object> cont) { |
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.
It's weird that this test/class is here. Are we expecting folks to write java endpoint trying to use coroutines?
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.
No, this test is meant to test that an error is thrown at build time because of the use of @Blocking
Fixes: #18145