Analzyer: Increase SSH timeout.

One second is ridiculous.

Change-Id: Id22998df7dd0dc8248a4267ebb4c738a1c9d1e0b
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Christian Kandeler
2012-02-24 15:09:08 +01:00
committed by hjk
parent 5ce1920e68
commit cbc133d5a8

View File

@@ -126,7 +126,7 @@ Utils::SshConnectionParameters StartRemoteDialog::sshParams() const
params.password = m_ui->password->text();
}
params.port = m_ui->port->value();
params.timeout = 1;
params.timeout = 10;
return params;
}