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 <[email protected]>
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
['"[email protected]" <[email protected]>'].

Reply via email to