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 25D0718F8E for ; Tue, 1 Dec 2015 22:21:45 +0000 (UTC) Received: (qmail 51632 invoked by uid 500); 1 Dec 2015 22:21:38 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 51599 invoked by uid 500); 1 Dec 2015 22:21:38 -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 51538 invoked by uid 99); 1 Dec 2015 22:21:38 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Dec 2015 22:21:38 +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 4AED0C6B2D for ; Tue, 1 Dec 2015 22:21:38 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id TT0bgG2zJib4 for ; Tue, 1 Dec 2015 22:21:30 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 11CAA23049 for ; Tue, 1 Dec 2015 22:21:26 +0000 (UTC) Received: (qmail 49362 invoked by uid 99); 1 Dec 2015 22:21:25 -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; Tue, 01 Dec 2015 22:21:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6E6D6E0E06; Tue, 1 Dec 2015 22:21:25 +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: Tue, 01 Dec 2015 22:21:40 -0000 Message-Id: <4879a2fcf7a5463895615ef2d298bcb7@git.apache.org> In-Reply-To: <1f642cefafcd419e8df1d6332eea072c@git.apache.org> References: <1f642cefafcd419e8df1d6332eea072c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [16/50] [abbrv] incubator-geode git commit: fixing GEODE-590: CI failure in GMSLocatorRecoveryJUnitTest fixing GEODE-590: CI failure in GMSLocatorRecoveryJUnitTest GMSHealthMonitorJUnitTest was leaving a system property set and poisoning subsequent unit tests by overriding the bind-address setting in the junit JVM. reviewed by Jianxia Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/452328f5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/452328f5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/452328f5 Branch: refs/heads/feature/GEODE-291 Commit: 452328f5c71de8c60ff757bd33a6f96e6ee8d403 Parents: 1276cc8 Author: Bruce Schuchardt Authored: Mon Nov 23 12:29:52 2015 -0800 Committer: Bruce Schuchardt Committed: Mon Nov 23 12:29:52 2015 -0800 ---------------------------------------------------------------------- .../membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/452328f5/gemfire-core/src/test/java/com/gemstone/gemfire/distributed/internal/membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java ---------------------------------------------------------------------- diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/distributed/internal/membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/distributed/internal/membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java index 697e899..1699068 100644 --- a/gemfire-core/src/test/java/com/gemstone/gemfire/distributed/internal/membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java +++ b/gemfire-core/src/test/java/com/gemstone/gemfire/distributed/internal/membership/gms/membership/fd/GMSHealthMonitorJUnitTest.java @@ -100,6 +100,7 @@ public class GMSHealthMonitorJUnitTest { @After public void tearDown() { gmsHealthMonitor.stop(); + System.getProperties().remove("gemfire.bind-address"); } @Test