-
Hi folks, I'm working on a service that uses mTLS for outbound communication, and I need to log which certificate chain the HTTP client is actually using. In Netty, this should be achievable with something like: sslHandler.handshakeFuture().addListener(future -> {
if (future.isSuccess()) {
logCertificates(sslHandler.engine().getSession().getLocalCertificates());
}
}); However, in Micronaut, the Is there a recommended approach to achieve this in Micronaut's HTTP client? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
yawkat
Oct 7, 2024
Replies: 1 comment 1 reply
-
you can use a pipeline customizer |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
htutman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you can use a pipeline customizer