We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd5772d commit 545a00eCopy full SHA for 545a00e
modules/cassandra/tls.go
@@ -82,10 +82,9 @@ func createTLSCerts() (*tlsCerts, error) {
82
certPool.AddCert(caCert.Cert)
83
84
tlsConfig := &tls.Config{
85
- RootCAs: certPool,
86
- ServerName: "localhost",
87
- MinVersion: tls.VersionTLS12,
88
- InsecureSkipVerify: true, // Skip hostname verification for container testing
+ RootCAs: certPool,
+ ServerName: "localhost",
+ MinVersion: tls.VersionTLS12,
89
}
90
91
return &tlsCerts{
0 commit comments