File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,19 +84,19 @@ ChessEngine::ChessEngine(QObject* parent)
8484 m_restartMode(EngineConfiguration::RestartAuto)
8585{
8686 m_pingTimer->setSingleShot (true );
87- m_pingTimer->setInterval (90000 );
87+ m_pingTimer->setInterval (120000 );
8888 connect (m_pingTimer, SIGNAL (timeout ()), this , SLOT (onPingTimeout ()));
8989
9090 m_quitTimer->setSingleShot (true );
9191 m_quitTimer->setInterval (10000 );
9292 connect (m_quitTimer, SIGNAL (timeout ()), this , SLOT (onQuitTimeout ()));
9393
9494 m_idleTimer->setSingleShot (true );
95- m_idleTimer->setInterval (90000 );
95+ m_idleTimer->setInterval (120000 );
9696 connect (m_idleTimer, SIGNAL (timeout ()), this , SLOT (onIdleTimeout ()));
9797
9898 m_protocolStartTimer->setSingleShot (true );
99- m_protocolStartTimer->setInterval (95000 );
99+ m_protocolStartTimer->setInterval (125000 );
100100 connect (m_protocolStartTimer, SIGNAL (timeout ()),
101101 this , SLOT (onProtocolStartTimeout ()));
102102}
You can’t perform that action at this time.
0 commit comments