Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: tvallin <[email protected]>
  • Loading branch information
tvallin committed Aug 21, 2023
1 parent 8273603 commit 8ad817a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private static void mTlsRouting(HttpRouting.Builder routing) {

// close to avoid re-using cached connections on the client side
res.header(Http.Headers.CONNECTION_CLOSE);
res.send("Hello " + req.headers().value(X_HELIDON_CN).orElse("Unknown CN") + "!");
res.send("Hello " + req.headers().get(X_HELIDON_CN).value() + "!");
});
}

Expand Down

0 comments on commit 8ad817a

Please sign in to comment.