From df431ebad9fc5121e8889f52afaca7a1cbacbd67 Mon Sep 17 00:00:00 2001 From: Roman Nozdrin Date: Fri, 22 Jul 2022 20:25:24 +0300 Subject: [PATCH] MCOL-5093 This patch raises the hardcoded service start TO up to 2 hours (#2469) --- utils/common/service.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/common/service.h b/utils/common/service.h index 898b587ec..d95bd0299 100644 --- a/utils/common/service.h +++ b/utils/common/service.h @@ -27,7 +27,7 @@ class Service protected: // The read operation implicitly controls how long binary waits // before it starts. This is import for DMLProc to survive rollbacks. See MCOL-5105. - static constexpr const size_t PipeReadTimeout = 1200; + static constexpr const size_t PipeReadTimeout = 7200; // The service name, for logging const std::string m_name; // The pipe to send messages from the child to the parent