Skip to content

Commit

Permalink
Merge pull request #46 from kube-tarian/cassandra-ssl-fix
Browse files Browse the repository at this point in the history
cassandra ssl options removed for non-ssl
  • Loading branch information
share2kanna committed Jan 29, 2023
2 parents f46b293 + 01b64a9 commit 7e442ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/kad/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions integrator/common-pkg/plugins/fetcher/cassandra_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7e442ca

Please sign in to comment.