mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-28 23:15:52 +00:00
Disable Websocket ping timer
This commit is contained in:
@@ -74,6 +74,8 @@ template <>
|
||||
void ConnectionImpl <WebSocket02>::setPingTimer ()
|
||||
{
|
||||
auto freq = getConfig ().WEBSOCKET_PING_FREQ;
|
||||
// VFALCO Disabled since it might cause hangs
|
||||
freq = 0;
|
||||
if (freq <= 0)
|
||||
return;
|
||||
connection_ptr ptr = m_connection.lock ();
|
||||
|
||||
@@ -116,6 +116,8 @@ template <>
|
||||
void ConnectionImpl <WebSocket04>::setPingTimer ()
|
||||
{
|
||||
auto freq = getConfig ().WEBSOCKET_PING_FREQ;
|
||||
// VFALCO Disabled since it might cause hangs
|
||||
freq = 0;
|
||||
if (freq <= 0)
|
||||
return;
|
||||
if (auto con = m_connection.lock ())
|
||||
|
||||
Reference in New Issue
Block a user