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 A051A200CCC for ; Thu, 6 Jul 2017 20:26:39 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9F023167191; Thu, 6 Jul 2017 18:26:39 +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 E593C167181 for ; Thu, 6 Jul 2017 20:26:38 +0200 (CEST) Received: (qmail 88022 invoked by uid 500); 6 Jul 2017 18:26:37 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 87801 invoked by uid 99); 6 Jul 2017 18:26:37 -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; Thu, 06 Jul 2017 18:26:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 78127F5525; Thu, 6 Jul 2017 18:26:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.apache.org Date: Thu, 06 Jul 2017 18:26:58 -0000 Message-Id: <7a896d5792c546efa5bf25d5ace59373@git.apache.org> In-Reply-To: <5720fd0701f84d08ad73161e83eeb41d@git.apache.org> References: <5720fd0701f84d08ad73161e83eeb41d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [24/50] [abbrv] geode git commit: Fix spotless failure archived-at: Thu, 06 Jul 2017 18:26:39 -0000 Fix spotless failure Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/61075610 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/61075610 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/61075610 Branch: refs/heads/feature/GEODE-1279 Commit: 61075610e7c0d202c4dadb369bfa182ee0645ca9 Parents: 1a88489 Author: Jared Stewart Authored: Wed Jun 28 13:26:27 2017 -0700 Committer: Jared Stewart Committed: Wed Jun 28 13:26:27 2017 -0700 ---------------------------------------------------------------------- .../membership/gms/membership/GMSJoinLeaveJUnitTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/61075610/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/membership/GMSJoinLeaveJUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/membership/GMSJoinLeaveJUnitTest.java b/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/membership/GMSJoinLeaveJUnitTest.java index 2c7f9d9..20d2e95 100644 --- a/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/membership/GMSJoinLeaveJUnitTest.java +++ b/geode-core/src/test/java/org/apache/geode/distributed/internal/membership/gms/membership/GMSJoinLeaveJUnitTest.java @@ -1199,8 +1199,8 @@ public class GMSJoinLeaveJUnitTest { initMocks(false); HashSet registrants = new HashSet<>(); registrants.add(mockMembers[0]); - FindCoordinatorResponse fcr = new FindCoordinatorResponse(mockMembers[0], mockMembers[0], - false, null, registrants, false, true, null); + FindCoordinatorResponse fcr = new FindCoordinatorResponse(mockMembers[0], mockMembers[0], false, + null, registrants, false, true, null); NetView view = createView(); JoinResponseMessage jrm = new JoinResponseMessage(mockMembers[0], view, 0); @@ -1214,8 +1214,8 @@ public class GMSJoinLeaveJUnitTest { callAsnyc(() -> { gmsJoinLeave.installView(view); }); - Awaitility.await().atMost(10, TimeUnit.SECONDS).until (() -> - assertTrue("Should be able to join ", gmsJoinLeave.join())); + Awaitility.await().atMost(10, TimeUnit.SECONDS) + .until(() -> assertTrue("Should be able to join ", gmsJoinLeave.join())); } private void callAsnyc(Runnable run) {