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

rzo1 pushed a commit to branch tomee-9.x
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/tomee-9.x by this push:
     new 834e114466 Increase the amount of attempts (= wait time) to give 
enough time to the server to start on the CI/CD system because Jenkins slaves 
are very slow
834e114466 is described below

commit 834e1144663320162e16a0c48b685e9ff9396722
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Feb 10 20:06:41 2023 +0100

    Increase the amount of attempts (= wait time) to give enough time to the 
server to start on the CI/CD system because Jenkins slaves are very slow
---
 .../test/java/org/superbiz/moviefun/DeployInWebAppsDirectoryTest.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/examples/connector-ear/connector-sample-functional-tests/src/test/java/org/superbiz/moviefun/DeployInWebAppsDirectoryTest.java
 
b/examples/connector-ear/connector-sample-functional-tests/src/test/java/org/superbiz/moviefun/DeployInWebAppsDirectoryTest.java
index 6dd93cfe95..03891dd15b 100644
--- 
a/examples/connector-ear/connector-sample-functional-tests/src/test/java/org/superbiz/moviefun/DeployInWebAppsDirectoryTest.java
+++ 
b/examples/connector-ear/connector-sample-functional-tests/src/test/java/org/superbiz/moviefun/DeployInWebAppsDirectoryTest.java
@@ -108,6 +108,7 @@ public class DeployInWebAppsDirectoryTest {
         configuration.setVersion(System.getProperty("tomee.version"));
 //        configuration.setDebug(true);
         configuration.setHttpPort(-1);
+        configuration.setStopPort(-1);
 
         final RemoteTomEEContainer container = new RemoteTomEEContainer();
         container.setup(configuration);
@@ -130,7 +131,7 @@ public class DeployInWebAppsDirectoryTest {
                     runTests(appUrl);
                     return null;
                 }
-            }, 30);
+            }, 60);
 
             container.stop();
 

Reply via email to