Repository: cassandra
Updated Branches:
  refs/heads/trunk c5b02422e -> afd6cf2cb


better error message


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

Branch: refs/heads/trunk
Commit: afd6cf2cbbb549c4672a2a6d987745bfaecbc0d7
Parents: c5b0242
Author: Dave Brosius <[email protected]>
Authored: Mon Apr 13 00:04:22 2015 -0400
Committer: Dave Brosius <[email protected]>
Committed: Mon Apr 13 00:04:22 2015 -0400

----------------------------------------------------------------------
 src/java/org/apache/cassandra/auth/CassandraRoleManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/afd6cf2c/src/java/org/apache/cassandra/auth/CassandraRoleManager.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/auth/CassandraRoleManager.java 
b/src/java/org/apache/cassandra/auth/CassandraRoleManager.java
index 83b309d..66b283d 100644
--- a/src/java/org/apache/cassandra/auth/CassandraRoleManager.java
+++ b/src/java/org/apache/cassandra/auth/CassandraRoleManager.java
@@ -110,7 +110,7 @@ public class CassandraRoleManager implements IRoleManager
          int rounds = Integer.getInteger(GENSALT_LOG2_ROUNDS_PROPERTY, 10);
          if (rounds < 4 || rounds > 31)
          throw new ConfigurationException(String.format("Bad value for system 
property -D%s." +
-                                                        "Please use a value 4 
and 31",
+                                                        "Please use a value 
between 4 and 31 inclusively",
                                                         
GENSALT_LOG2_ROUNDS_PROPERTY));
          return rounds;
     }

Reply via email to