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 2015/03/04 22:36:44 UTC

cassandra git commit: make stress read-lookback optional

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1 213b06695 -> 4176f9e78


make stress read-lookback optional


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

Branch: refs/heads/cassandra-2.1
Commit: 4176f9e78cd4d8c64ad791cf97b32b0a86448874
Parents: 213b066
Author: T Jake Luciani <ja...@apache.org>
Authored: Wed Mar 4 16:36:33 2015 -0500
Committer: T Jake Luciani <ja...@apache.org>
Committed: Wed Mar 4 16:36:33 2015 -0500

----------------------------------------------------------------------
 .../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/4176f9e7/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 9d62c3b..9425776 100644
--- a/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
+++ b/tools/stress/src/org/apache/cassandra/stress/settings/SettingsPopulation.java
@@ -107,7 +107,7 @@ public class SettingsPopulation implements Serializable
     private static final class SequentialOptions extends GenerateOptions
     {
         final OptionSimple populate;
-        final OptionDistribution lookback = new OptionDistribution("read-lookback=", null, "Select read seeds from the recently visited write seeds");
+        final OptionDistribution lookback = new OptionDistribution("read-lookback=", null, "Select read seeds from the recently visited write seeds", false);
         final OptionSimple nowrap = new OptionSimple("no-wrap", "", null, "Terminate the stress test once all seeds in the range have been visited", false);
 
         public SequentialOptions(String defaultLimit)