Skip to content

CASSANDRA-20359 trunk Fix unparseable YAML in default cassandra.yaml #3837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions conf/cassandra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@ batchlog_replay_throttle: 1024KiB
# Please increase system_auth keyspace replication factor if you use this authenticator.
# If using PasswordAuthenticator, CassandraRoleManager must also be used (see below)
authenticator:
class_name : AllowAllAuthenticator
class_name: AllowAllAuthenticator
# MutualTlsAuthenticator can be configured using the following configuration. One can add their own validator
# which implements MutualTlsCertificateValidator class and provide logic for extracting identity out of certificates
# and validating certificates.
# class_name : org.apache.cassandra.auth.MutualTlsAuthenticator
# parameters :
# class_name: org.apache.cassandra.auth.MutualTlsAuthenticator
# parameters:
# validator_class_name: org.apache.cassandra.auth.SpiffeCertificateValidator

# Authorization backend, implementing IAuthorizer; used to limit access/provide permissions
Expand Down Expand Up @@ -1016,13 +1016,13 @@ listen_address: localhost
# Internode authentication backend, implementing IInternodeAuthenticator;
# used to allow/disallow connections from peer nodes.
#internode_authenticator:
# class_name : org.apache.cassandra.auth.AllowAllInternodeAuthenticator
# parameters :
# class_name: org.apache.cassandra.auth.AllowAllInternodeAuthenticator
# parameters:
# MutualTlsInternodeAuthenticator can be configured using the following configuration.One can add their own validator
# which implements MutualTlsCertificateValidator class and provide logic for extracting identity out of certificates
# and validating certificates.
# class_name : org.apache.cassandra.auth.MutualTlsInternodeAuthenticator
# parameters :
# class_name: org.apache.cassandra.auth.MutualTlsInternodeAuthenticator
# parameters:
# validator_class_name: org.apache.cassandra.auth.SpiffeCertificateValidator
# trusted_peer_identities: "spiffe1,spiffe2"
# node_identity: "spiffe1"
Expand Down