Skip to content

Commit

Permalink
Fix Undertow HTTP/2 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Feb 9, 2021
1 parent 583d69c commit 14f65f5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,9 @@ public void run() {
return new Handler<RoutingContext>() {
@Override
public void handle(RoutingContext event) {
event.request().pause();
if (!event.request().isEnded()) {
event.request().pause();
}
//we handle auth failure directly
event.remove(QuarkusHttpUser.AUTH_FAILURE_HANDLER);
VertxHttpExchange exchange = new VertxHttpExchange(event.request(), allocator, executorService, event,
Expand Down

0 comments on commit 14f65f5

Please sign in to comment.