Increase the cluster reconnect frequency to 10s

This is blocked by #6517.

refs #6234
This commit is contained in:
Michael Friedrich 2018-09-24 17:28:27 +02:00
parent 4695e620d0
commit cd819f74f4
1 changed files with 1 additions and 1 deletions

View File

@ -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);