Skip to content
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 fallback for suspended methods #8825

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removed empty condition
  • Loading branch information
ondrej-hrstka committed Feb 24, 2023
commit 1c9f9b4905dd00b8e6e02970d38c75b3ff9ca675
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ public Object intercept(MethodInvocationContext<Object, Object> context) {
}
InterceptedMethod interceptedMethod = InterceptedMethod.of(context);
try {
if (context.isSuspend()) {

}

switch (interceptedMethod.resultType()) {
case PUBLISHER:
return interceptedMethod.handleResult(
Expand Down