From cd819f74f4affcd10f44b000e313215155e15e9d Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 24 Sep 2018 17:28:27 +0200 Subject: [PATCH] Increase the cluster reconnect frequency to 10s This is blocked by #6517. refs #6234 --- lib/remote/apilistener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/remote/apilistener.cpp b/lib/remote/apilistener.cpp index 4605df364..5f9dc55f2 100644 --- a/lib/remote/apilistener.cpp +++ b/lib/remote/apilistener.cpp @@ -249,7 +249,7 @@ void ApiListener::Start(bool runtimeCreated) m_ReconnectTimer = new Timer(); m_ReconnectTimer->OnTimerExpired.connect(std::bind(&ApiListener::ApiReconnectTimerHandler, this)); - m_ReconnectTimer->SetInterval(60); + m_ReconnectTimer->SetInterval(10); m_ReconnectTimer->Start(); m_ReconnectTimer->Reschedule(0); -- 2.40.0