You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sa...@apache.org on 2016/11/14 12:52:52 UTC

[2/6] cassandra git commit: Use correct system_auth table names in cassandra.yaml

Use correct system_auth table names in cassandra.yaml

Patch by Eduard Tudenhoefner; reviewed by Sam Tunnicliffe for
CASSANDRA-12911


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/d5326866
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/d5326866
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/d5326866

Branch: refs/heads/cassandra-3.X
Commit: d5326866d3cca1446356f939aa09f68eda864ed5
Parents: 8f15eb1
Author: Eduard Tudenhoefner <ed...@datastax.com>
Authored: Mon Nov 14 12:49:46 2016 +0100
Committer: Sam Tunnicliffe <sa...@beobal.com>
Committed: Mon Nov 14 12:48:06 2016 +0000

----------------------------------------------------------------------
 conf/cassandra.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/d5326866/conf/cassandra.yaml
----------------------------------------------------------------------
diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml
index 085b68e..bece97a 100644
--- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml
@@ -95,7 +95,7 @@ batchlog_replay_throttle_in_kb: 1024
 #
 # - AllowAllAuthenticator performs no checks - set it to disable authentication.
 # - PasswordAuthenticator relies on username/password pairs to authenticate
-#   users. It keeps usernames and hashed passwords in system_auth.credentials table.
+#   users. It keeps usernames and hashed passwords in system_auth.roles table.
 #   Please increase system_auth keyspace replication factor if you use this authenticator.
 #   If using PasswordAuthenticator, CassandraRoleManager must also be used (see below)
 authenticator: AllowAllAuthenticator
@@ -105,7 +105,7 @@ authenticator: AllowAllAuthenticator
 # CassandraAuthorizer}.
 #
 # - AllowAllAuthorizer allows any action to any user - set it to disable authorization.
-# - CassandraAuthorizer stores permissions in system_auth.permissions table. Please
+# - CassandraAuthorizer stores permissions in system_auth.role_permissions table. Please
 #   increase system_auth keyspace replication factor if you use this authorizer.
 authorizer: AllowAllAuthorizer