From commits-return-25969-archive-asf-public=cust-asf.ponee.io@geode.apache.org Fri Mar 9 07:25:19 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id B88EA18064A for ; Fri, 9 Mar 2018 07:25:18 +0100 (CET) Received: (qmail 14002 invoked by uid 500); 9 Mar 2018 06:25:17 -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 13993 invoked by uid 99); 9 Mar 2018 06:25:17 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Mar 2018 06:25:17 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 00E3285031; Fri, 9 Mar 2018 06:25:16 +0000 (UTC) Date: Fri, 09 Mar 2018 06:25:16 +0000 To: "commits@geode.apache.org" Subject: [geode] branch feature/GEODE-4647 updated: GEODE-4647: spotlessApply MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152057671657.24922.6583641614087769731@gitbox.apache.org> From: zhouxj@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/feature/GEODE-4647 X-Git-Reftype: branch X-Git-Oldrev: 65a8f80a91306fd766b48769f42338e4f78f0533 X-Git-Newrev: ba9ea6e6da7fedb88a07884f44aae8f255c7a04c X-Git-Rev: ba9ea6e6da7fedb88a07884f44aae8f255c7a04c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. zhouxj pushed a commit to branch feature/GEODE-4647 in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/feature/GEODE-4647 by this push: new ba9ea6e GEODE-4647: spotlessApply ba9ea6e is described below commit ba9ea6e6da7fedb88a07884f44aae8f255c7a04c Author: zhouxh AuthorDate: Thu Mar 8 22:24:46 2018 -0800 GEODE-4647: spotlessApply --- .../org/apache/geode/internal/cache/wan/AsyncEventQueueTestBase.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/wan/AsyncEventQueueTestBase.java b/geode-core/src/test/java/org/apache/geode/internal/cache/wan/AsyncEventQueueTestBase.java index 6a0c7d6..26ac48f 100644 --- a/geode-core/src/test/java/org/apache/geode/internal/cache/wan/AsyncEventQueueTestBase.java +++ b/geode-core/src/test/java/org/apache/geode/internal/cache/wan/AsyncEventQueueTestBase.java @@ -752,7 +752,8 @@ public class AsyncEventQueueTestBase extends JUnit4DistributedTestCase { } } final AsyncEventQueueStats statistics = ((AsyncEventQueueImpl) queue).getStatistics(); - Awaitility.await().atMost(60000, TimeUnit.MILLISECONDS).pollInterval(1000, TimeUnit.MILLISECONDS) + Awaitility.await().atMost(60000, TimeUnit.MILLISECONDS) + .pollInterval(1000, TimeUnit.MILLISECONDS) .until(() -> assertEquals("Expected queue size: " + queueSize + " but actual queue size: " + statistics.getEventQueueSize(), queueSize, statistics.getEventQueueSize())); assertEquals(queueSize, statistics.getEventQueueSize()); @@ -761,7 +762,7 @@ public class AsyncEventQueueTestBase extends JUnit4DistributedTestCase { assertEquals( "Expected events in the secondary queue is " + secondaryQueueSize + ", but actual is " + statistics.getEventSecondaryQueueSize(), - secondaryQueueSize, statistics.getEventSecondaryQueueSize()); + secondaryQueueSize, statistics.getEventSecondaryQueueSize()); }); } else { // for serial queue, evenvSecondaryQueueSize is not used -- To stop receiving notification emails like this one, please contact zhouxj@apache.org.