[Libreoffice-commits] online.git: Branch 'libreoffice-5-3' - wsd/LOOLWSD.cpp

Ashod Nakashian ashod.nakashian at collabora.co.uk
Mon Mar 27 01:25:57 UTC 2017


 wsd/LOOLWSD.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0783eb343a035d3ddd5c76f853e4a286e8534288
Author: Ashod Nakashian <ashod.nakashian at collabora.co.uk>
Date:   Fri Feb 24 21:27:13 2017 -0500

    wsd: allow more time for initial kit instance
    
    Change-Id: I141d30e0d1089521593c614be29ef5c33fd3428a
    Reviewed-on: https://gerrit.libreoffice.org/35576
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
    Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>

diff --git a/wsd/LOOLWSD.cpp b/wsd/LOOLWSD.cpp
index a696d8fb..39538828 100644
--- a/wsd/LOOLWSD.cpp
+++ b/wsd/LOOLWSD.cpp
@@ -335,7 +335,7 @@ static void preForkChildren()
     forkChildren(numPreSpawn);
 
     // Wait until we have at least one child.
-    const auto timeout = std::chrono::milliseconds(CHILD_TIMEOUT_MS);
+    const auto timeout = std::chrono::milliseconds(CHILD_TIMEOUT_MS * 3);
     NewChildrenCV.wait_for(lock, timeout, []() { return !NewChildren.empty(); });
 }
 


More information about the Libreoffice-commits mailing list