From 01b64a989a428cc8fb56d9ffd0bfe9843702a185 Mon Sep 17 00:00:00 2001 From: share2kanna Date: Sun, 29 Jan 2023 17:37:16 +0530 Subject: [PATCH] cassandra ssl options removed for non-ssl --- charts/kad/Chart.yaml | 2 +- integrator/common-pkg/plugins/fetcher/cassandra_store.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/kad/Chart.yaml b/charts/kad/Chart.yaml index f7b641eb..2d464f9d 100644 --- a/charts/kad/Chart.yaml +++ b/charts/kad/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.8 +version: 0.1.9 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/integrator/common-pkg/plugins/fetcher/cassandra_store.go b/integrator/common-pkg/plugins/fetcher/cassandra_store.go index 8ea75d79..7f5cfaf6 100644 --- a/integrator/common-pkg/plugins/fetcher/cassandra_store.go +++ b/integrator/common-pkg/plugins/fetcher/cassandra_store.go @@ -41,9 +41,9 @@ func NewStore(log logging.Logger) (*Store, error) { Username: cfg.Username, Password: cfg.Password, } - cluster.SslOpts = &gocql.SslOptions{ - EnableHostVerification: false, - } + // cluster.SslOpts = &gocql.SslOptions{ + // EnableHostVerification: false, + // } session, err := cluster.CreateSession() if err != nil {