You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2022/01/11 15:23:29 UTC

[sling-org-apache-sling-starter] branch master updated: SLING-11052 - Increase starter timeout during integration tests

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git


The following commit(s) were added to refs/heads/master by this push:
     new bf1d498  SLING-11052 - Increase starter timeout during integration tests
bf1d498 is described below

commit bf1d498aef68ad263b85e0e2683d47dd01421610
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Jan 11 16:11:46 2022 +0100

    SLING-11052 - Increase starter timeout during integration tests
    
    Set a 60 seconds start timeout and make it configurable.
---
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pom.xml b/pom.xml
index a7c1c96..554606a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,7 @@
         <bnd.index.generation.skip>true</bnd.index.generation.skip>
         <docker.skip>true</docker.skip>
         <mongo.container.image>mongo:4.4.6</mongo.container.image>
+        <it.startTimeoutSeconds>60</it.startTimeoutSeconds>
     </properties>
 
     <build>
@@ -285,6 +286,7 @@
                                     <org.osgi.service.http.port>${http.port}</org.osgi.service.http.port>
                                 </frameworkProperties>
                             </launcherArguments>
+                            <startTimeoutSeconds>${it.startTimeoutSeconds}</startTimeoutSeconds>
                         </launch>
                         <launch>
                             <id>sling-12-oak-mongo</id>
@@ -304,6 +306,7 @@
                                     <mongo.port>${mongo.port}</mongo.port>
                                 </variables>
                             </launcherArguments>
+                            <startTimeoutSeconds>${it.startTimeoutSeconds}</startTimeoutSeconds>
                         </launch>
                     </launches>
                 </configuration>