From commits-return-25192-archive-asf-public=cust-asf.ponee.io@geode.apache.org Mon Jan 8 20:15:41 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 606FB180607 for ; Mon, 8 Jan 2018 20:15:41 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 50619160C2C; Mon, 8 Jan 2018 19:15:41 +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 975DC160C29 for ; Mon, 8 Jan 2018 20:15:40 +0100 (CET) Received: (qmail 13414 invoked by uid 500); 8 Jan 2018 19:15:39 -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 13405 invoked by uid 99); 8 Jan 2018 19:15:39 -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; Mon, 08 Jan 2018 19:15:39 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3A26281833; Mon, 8 Jan 2018 19:15:39 +0000 (UTC) Date: Mon, 08 Jan 2018 19:15:39 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: GEODE-4131: reduce flakiness of the added acceptance test (#1247) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151543893896.22953.723805470835000764@gitbox.apache.org> From: jinmeiliao@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: ad74d980604291533c85929a854b3003f379df74 X-Git-Newrev: 977e16b5665105d2e82ec6621da43de52ac056b2 X-Git-Rev: 977e16b5665105d2e82ec6621da43de52ac056b2 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. jinmeiliao pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new 977e16b GEODE-4131: reduce flakiness of the added acceptance test (#1247) 977e16b is described below commit 977e16b5665105d2e82ec6621da43de52ac056b2 Author: jinmeiliao AuthorDate: Mon Jan 8 11:15:36 2018 -0800 GEODE-4131: reduce flakiness of the added acceptance test (#1247) --- .../management/internal/cli/commands/DeployWithLargeJarTest.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/geode-assembly/src/test/java/org/apache/geode/management/internal/cli/commands/DeployWithLargeJarTest.java b/geode-assembly/src/test/java/org/apache/geode/management/internal/cli/commands/DeployWithLargeJarTest.java index d683226..82d0900 100644 --- a/geode-assembly/src/test/java/org/apache/geode/management/internal/cli/commands/DeployWithLargeJarTest.java +++ b/geode-assembly/src/test/java/org/apache/geode/management/internal/cli/commands/DeployWithLargeJarTest.java @@ -37,12 +37,10 @@ public class DeployWithLargeJarTest { @Test public void deployLargeSetOfJars() throws Exception { File libDir = gfsh.getGfshPath().getParent().getParent().resolve("lib").toFile(); - String commonLibs = Arrays - .stream(libDir - .listFiles(x -> x.getName().startsWith("commons") || x.getName().startsWith("spring"))) + String commonLibs = Arrays.stream(libDir.listFiles(x -> x.getName().startsWith("commons"))) .map(File::getAbsolutePath).collect(Collectors.joining(",")); - GfshExecution execution = GfshScript.of("start locator --name=locator --max-heap=64m", - "start server --name=server --max-heap=64m", "sleep --time=1", + GfshExecution execution = GfshScript.of("start locator --name=locator --max-heap=128m", + "start server --name=server --max-heap=128m", "sleep --time=1", "deploy --jars=" + commonLibs).execute(gfsh); } -- To stop receiving notification emails like this one, please contact ['"commits@geode.apache.org" '].