Affects: 5.2.7.RELEASE


ReactorServerHttpRequest.initSslInfo() works only for HTTP1.1 requests because the code looks for SslHandler in the channel().pipeline().

For HTTP/2 request SslHandler is locate in the channel().parent().pipeline() Example how to access: Http2StreamBridgeHandler.channelRead() (reactor-netty)

Or, maybe, you have some other elegant solution?