You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the update to spinnaker-dependencies, migrate kork to Spring Boot 1.4 and related dependencies
NOTE: Spring Boot 1.4 automatically uses Tomcat 8.5.5. In 8.5, several APIs were refactored including JSSESocketFactory. This patch pins Tomcat to 8.0.24, latest stable version of 8.0 until this refactoring can be dealt with.
Copy file name to clipboardExpand all lines: kork-web/src/main/groovy/com/netflix/spinnaker/tomcat/x509/BlacklistingJSSESocketFactory.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,9 @@
23
23
importjavax.net.ssl.X509TrustManager;
24
24
importjava.util.Optional;
25
25
26
+
/**
27
+
* TODO: Handle Tomcat 8.5 refactoring that removes low level JSSESocketFactory. See https://github.com/spring-projects/spring-boot/issues/6164 for more details.
0 commit comments