Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1DAA918E0E for ; Fri, 18 Mar 2016 21:43:32 +0000 (UTC) Received: (qmail 96616 invoked by uid 500); 18 Mar 2016 21:43:32 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 96582 invoked by uid 500); 18 Mar 2016 21:43:32 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 96573 invoked by uid 99); 18 Mar 2016 21:43:32 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2016 21:43:32 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 7B078C2402 for ; Fri, 18 Mar 2016 21:43:31 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.221 X-Spam-Level: X-Spam-Status: No, score=-3.221 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id gnVwoy4lKXuk for ; Fri, 18 Mar 2016 21:43:30 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with SMTP id 386975FB2D for ; Fri, 18 Mar 2016 21:43:28 +0000 (UTC) Received: (qmail 95932 invoked by uid 99); 18 Mar 2016 21:43:27 -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; Fri, 18 Mar 2016 21:43:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D166FE0A08; Fri, 18 Mar 2016 21:43:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.incubator.apache.org Date: Fri, 18 Mar 2016 21:43:38 -0000 Message-Id: In-Reply-To: <10a521128be1405f9396f3725453493a@git.apache.org> References: <10a521128be1405f9396f3725453493a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [13/14] incubator-geode git commit: Fix up Fix up Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/77147f0e Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/77147f0e Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/77147f0e Branch: refs/heads/feature/GEODE-1050 Commit: 77147f0ec15d2188a8d84e391880a04cbf8b35f7 Parents: def98e3 Author: Kirk Lund Authored: Fri Mar 18 14:39:55 2016 -0700 Committer: Kirk Lund Committed: Fri Mar 18 14:39:55 2016 -0700 ---------------------------------------------------------------------- .../dunit/PartitionedRegionCompactRangeIndexDUnitTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/77147f0e/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/PartitionedRegionCompactRangeIndexDUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/PartitionedRegionCompactRangeIndexDUnitTest.java b/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/PartitionedRegionCompactRangeIndexDUnitTest.java index 8be017c..791e320 100644 --- a/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/PartitionedRegionCompactRangeIndexDUnitTest.java +++ b/geode-core/src/test/java/com/gemstone/gemfire/cache/query/dunit/PartitionedRegionCompactRangeIndexDUnitTest.java @@ -15,6 +15,7 @@ * limitations under the License. */ package com.gemstone.gemfire.cache.query.dunit; + import java.io.File; import java.util.HashMap; import java.util.Map; @@ -54,12 +55,12 @@ public class PartitionedRegionCompactRangeIndexDUnitTest extends DistributedTest return props; } - public void setUp() throws Exception { + public void postSetUp() throws Exception { this.disconnectAllFromDS(); } @Override - protected void preTearDown() throws Exception { + public void preTearDown() throws Exception { Host host = Host.getHost(0); VM vm0 = host.getVM(0); VM vm1 = host.getVM(1);