Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
dstepanov committed Dec 4, 2023
1 parent 7ed3e35 commit 6f8ec40
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,7 @@ protected <I, R extends io.micronaut.http.HttpResponse<?>> Publisher<R> applyFil
return ExecutionFlow.error(e);
}
});
return (Publisher<R>) Mono.from(ReactiveExecutionFlow.fromFlow(runner.run(request)).toPublisher())
.map(x -> x);
return (Publisher<R>) Mono.from(ReactiveExecutionFlow.fromFlow(runner.run(request)).toPublisher());
}

protected <O> Publisher<io.micronaut.http.HttpResponse<O>> responsePublisher(
Expand Down

0 comments on commit 6f8ec40

Please sign in to comment.