From 213b06695775718ebcecd738c95107f5be7b026f Mon Sep 17 00:00:00 2001 From: T Jake Luciani Date: Wed, 4 Mar 2015 16:28:30 -0500 Subject: [PATCH] ninja change stress read-lookback default to none --- .../apache/cassandra/stress/settings/SettingsPopulation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e57faea9b2..9d62c3bcef 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=", "fixed(1)", "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"); 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)