Skip to content

Commit

Permalink
chore: Remove jm.CustomHeader from TlsSessionInfo heirarchy (#4427)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Johan Andrén <[email protected]>
  • Loading branch information
jroper and johanandren authored Oct 4, 2024
1 parent e855bb3 commit 3e053fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

package akka.http.javadsl.model.headers;

import akka.http.scaladsl.model.HttpHeader;

import javax.net.ssl.SSLSession;

/**
Expand All @@ -13,7 +15,7 @@
* This header will only be added if it enabled in the configuration by setting
* <code>akka.http.[client|server].parsing.tls-session-info-header = on</code>.
*/
public abstract class TlsSessionInfo extends CustomHeader {
public abstract class TlsSessionInfo extends HttpHeader {
/**
* @return the SSLSession this message was received over.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# changed type hierarchy but should not affect users
ProblemFilters.exclude[MissingTypesProblem]("akka.http.javadsl.model.headers.TlsSessionInfo")
ProblemFilters.exclude[MissingTypesProblem]("akka.http.scaladsl.model.headers.Tls$minusSession$minusInfo")

0 comments on commit 3e053fd

Please sign in to comment.