You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ja...@apache.org on 2016/05/18 13:13:42 UTC

[04/15] cassandra git commit: CASSANDRA-10828: Allow usage of multiplier in start value of population sequence

CASSANDRA-10828: Allow usage of multiplier in start value of population sequence


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

Branch: refs/heads/cassandra-3.0
Commit: 9359af2ea5bd80850f29a485dd054321bc946491
Parents: 6e6bde8
Author: Eduard Tudenhoefner <ed...@datastax.com>
Authored: Tue Dec 8 10:23:51 2015 +0100
Committer: T Jake Luciani <ja...@apache.org>
Committed: Wed May 18 09:09:06 2016 -0400

----------------------------------------------------------------------
 .../org/apache/cassandra/stress/settings/SettingsPopulation.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/9359af2e/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
----------------------------------------------------------------------
diff --git a/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java b/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
index 9425776..53c45ab 100644
--- a/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
+++ b/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
@@ -112,7 +112,7 @@ public class SettingsPopulation implements Serializable
 
         public SequentialOptions(String defaultLimit)
         {
-            populate = new OptionSimple("seq=", "[0-9]+\\.\\.+[0-9]+[MBK]?",
+            populate = new OptionSimple("seq=", "[0-9]+[MBK]?\\.\\.+[0-9]+[MBK]?",
                     "1.." + defaultLimit,
                     "Generate all seeds in sequence", true);
         }