Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CFD541002F for ; Wed, 4 Dec 2013 03:01:52 +0000 (UTC) Received: (qmail 71372 invoked by uid 500); 4 Dec 2013 03:01:46 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 71216 invoked by uid 500); 4 Dec 2013 03:01:43 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 71194 invoked by uid 99); 4 Dec 2013 03:01:42 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Dec 2013 03:01:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1EEF091C9C7; Wed, 4 Dec 2013 03:01:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Wed, 04 Dec 2013 03:01:42 -0000 Message-Id: <88cf5a4ea4064a8eb7119c06a66d3109@git.apache.org> In-Reply-To: <95b109867a4144b6bc9cb93c33109567@git.apache.org> References: <95b109867a4144b6bc9cb93c33109567@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/4] git commit: ACCUMULO-1960 Use $ACCUMULO_CONF_DIR/gc to kill the gc, not $ACCUMULO_CONF_DIR/masters ACCUMULO-1960 Use $ACCUMULO_CONF_DIR/gc to kill the gc, not $ACCUMULO_CONF_DIR/masters Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/57af8138 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/57af8138 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/57af8138 Branch: refs/heads/1.6.0-SNAPSHOT Commit: 57af8138a88c8753693de3a9ce9ba24dbf6a6be6 Parents: 35ff0e5 Author: Josh Elser Authored: Tue Dec 3 21:18:29 2013 -0500 Committer: Josh Elser Committed: Tue Dec 3 21:18:29 2013 -0500 ---------------------------------------------------------------------- test/system/continuous/magitator.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/57af8138/test/system/continuous/magitator.pl ---------------------------------------------------------------------- diff --git a/test/system/continuous/magitator.pl b/test/system/continuous/magitator.pl index 921c4d1..e26d143 100755 --- a/test/system/continuous/magitator.pl +++ b/test/system/continuous/magitator.pl @@ -60,7 +60,7 @@ while(1){ $cmd = "pssh -h $ACCUMULO_CONF_DIR/masters \"pkill -f '[ ]org.apache.accumulo.start.*master'\" < /dev/null"; print "$t $cmd\n"; system($cmd); - $cmd = "pssh -h $ACCUMULO_CONF_DIR/masters \"pkill -f '[ ]org.apache.accumulo.start.*gc'\" < /dev/null"; + $cmd = "pssh -h $ACCUMULO_CONF_DIR/gc \"pkill -f '[ ]org.apache.accumulo.start.*gc'\" < /dev/null"; print "$t $cmd\n"; system($cmd); }