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
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfiguration.java
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@ public CqlSessionBuilder cassandraSessionBuilder(DriverConfigLoader driverConfig
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraProperties.java
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -225,6 +225,11 @@ public static class Ssl {
225
225
*/
226
226
privateBooleanenabled;
227
227
228
+
/**
229
+
* Whether to perform hostname verification.
230
+
*/
231
+
privatebooleanverifyHostname = true;
232
+
228
233
/**
229
234
* SSL bundle name.
230
235
*/
@@ -246,6 +251,14 @@ public void setBundle(String bundle) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/cassandra/CassandraAutoConfigurationTests.java
0 commit comments