🐞 fix(连接模块): 修改连接超时时长

This commit is contained in:
huheng@kylinos.cn 2023-04-26 11:44:23 +08:00
parent 26a096cf0b
commit 902d74b0ed
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ void MainWindow::startTimer()
m_timer = new QTimer(this);
m_timer->setSingleShot(true);
connect(m_timer, &QTimer::timeout, this, &MainWindow::slotConnectFailed, Qt::DirectConnection);
m_timer->start(20000);
m_timer->start(10000);
}
void MainWindow::initSearchServer(QString searchPath)