[Server] Tweak inter process keepalive timers; this is a very tiny overhead for inter-process chatter to check for connection liveness (#1502)

This commit is contained in:
Chris Miles
2021-08-31 00:34:28 -05:00
committed by GitHub
parent 06890f695a
commit 3b01608a71
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -552,7 +552,7 @@ bool LoginServer::Connect()
);
}
m_keepalive = std::make_unique<EQ::Timer>(5000, true, std::bind(&LoginServer::OnKeepAlive, this, std::placeholders::_1));
m_keepalive = std::make_unique<EQ::Timer>(1000, true, std::bind(&LoginServer::OnKeepAlive, this, std::placeholders::_1));
return true;
}