소스 검색

Increased timeout for ssh connection

Mihawk 12 년 전
부모
커밋
a3374f3760
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      SshClient.cpp

+ 1 - 1
SshClient.cpp

@@ -274,7 +274,7 @@ bool SshClient::connectToHost(const QString &user, const QString &host)
     return false;
   else
   {
-    myConnectionTimerID = startTimer(60000); // up to 1 minute of waiting
+    myConnectionTimerID = startTimer(60000*3); // up to 3 minutes of waiting
     return true;
   }
 }