You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by iu...@apache.org on 2020/12/09 15:06:53 UTC

[brooklyn-server] branch master updated: Fix hide 'Too many open files' error executing all tests

This is an automated email from the ASF dual-hosted git repository.

iuliana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git


The following commit(s) were added to refs/heads/master by this push:
     new 1edc0af  Fix hide 'Too many open files' error executing all tests
     new 717bff1  Merge pull request #1133 from jcabrerizo/feature/persistence_must_exist
1edc0af is described below

commit 1edc0afbe893b4dd26835c10ff687a0c7835d7aa
Author: Juan Cabrerizo <ju...@cloudsoft.io>
AuthorDate: Wed Dec 9 14:36:07 2020 +0000

    Fix hide 'Too many open files' error executing all tests
---
 .../test/java/org/apache/brooklyn/launcher/BrooklynLauncherTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/launcher/src/test/java/org/apache/brooklyn/launcher/BrooklynLauncherTest.java b/launcher/src/test/java/org/apache/brooklyn/launcher/BrooklynLauncherTest.java
index 9b1c80a..2f358b6 100644
--- a/launcher/src/test/java/org/apache/brooklyn/launcher/BrooklynLauncherTest.java
+++ b/launcher/src/test/java/org/apache/brooklyn/launcher/BrooklynLauncherTest.java
@@ -268,7 +268,7 @@ public class BrooklynLauncherTest {
         }
     }
 
-    @Test
+    @Test(groups = "Integration") // PERSISTENCE_DIR_MUST_EXIST =  true can show hidden IOException in some environments
     public void testLaunchBrooklynWithoutRequiredPersistenceDir() throws Exception {
         BrooklynProperties brooklynProperties = BrooklynProperties.Factory.newDefault();
         String persistenceDir = "persistenceDir_" + Strings.makeRandomId(8);