forked from qt-creator/qt-creator
Clang: Increase backend alive timeout
...the backend is not yet multithreaded and on very slow machines on heavy load this can sum up. Change-Id: Ia7f456e8558d60aacbe6a689e884342b466063fa Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
This commit is contained in:
@@ -245,7 +245,7 @@ void IpcCommunicator::initializeBackend()
|
||||
qCDebug(log) << "Starting" << clangBackEndProcessPath;
|
||||
QTC_ASSERT(QFileInfo(clangBackEndProcessPath).exists(), return);
|
||||
|
||||
m_connection.setProcessAliveTimerInterval(10 * 1000);
|
||||
m_connection.setProcessAliveTimerInterval(30 * 1000);
|
||||
m_connection.setProcessPath(clangBackEndProcessPath);
|
||||
|
||||
connect(&m_connection, &ConnectionClient::processRestarted,
|
||||
|
||||
Reference in New Issue
Block a user