Skip to content

Commit

Permalink
Add in RequestDumpingHandler to HTTPTestServer to aid reading server …
Browse files Browse the repository at this point in the history
…logs.
  • Loading branch information
rachmatowicz committed Jun 28, 2023
1 parent 532d7de commit 1b4eda4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import io.undertow.server.handlers.BlockingHandler;
import io.undertow.server.handlers.CanonicalPathHandler;
import io.undertow.server.handlers.PathHandler;
import io.undertow.server.handlers.RequestDumpingHandler;
import io.undertow.server.handlers.error.SimpleErrorPageHandler;
import io.undertow.util.NetworkUtils;
import org.junit.runner.Description;
Expand Down Expand Up @@ -298,6 +299,7 @@ protected HttpHandler getRootHandler() {
root = new AuthenticationCallHandler(root);
root = new SimpleErrorPageHandler(root);
root = new CanonicalPathHandler(root);
root = new RequestDumpingHandler(root);
return root;
}

Expand Down

0 comments on commit 1b4eda4

Please sign in to comment.