Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 129B4200ACA for ; Wed, 18 May 2016 15:13:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0F8C2160A28; Wed, 18 May 2016 13:13:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 60BCD1609B1 for ; Wed, 18 May 2016 15:13:41 +0200 (CEST) Received: (qmail 94343 invoked by uid 500); 18 May 2016 13:13:40 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 93952 invoked by uid 99); 18 May 2016 13:13:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 May 2016 13:13:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BED55E094B; Wed, 18 May 2016 13:13:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jake@apache.org To: commits@cassandra.apache.org Date: Wed, 18 May 2016 13:13:43 -0000 Message-Id: In-Reply-To: <5b4ad6271b12417faac1c59aa333956f@git.apache.org> References: <5b4ad6271b12417faac1c59aa333956f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/15] cassandra git commit: CASSANDRA-10828: Allow usage of multiplier in start value of population sequence archived-at: Wed, 18 May 2016 13:13:42 -0000 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.7 Commit: 9359af2ea5bd80850f29a485dd054321bc946491 Parents: 6e6bde8 Author: Eduard Tudenhoefner Authored: Tue Dec 8 10:23:51 2015 +0100 Committer: T Jake Luciani 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); }