client: raise HTTP_TIMEOUT to 120s

As 20s is really not that high, especially for loaded setups one is
connected to through a spotty network (looking at you ÖBB railnet)
and gets latency spikes of 5 - 10s for some minutes at a time..

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-02-24 11:55:37 +01:00
parent 21e3ed3449
commit a941bbd0c9
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ use crate::tools::{
}; };
/// Timeout used for several HTTP operations that are expected to finish quickly but may block in /// Timeout used for several HTTP operations that are expected to finish quickly but may block in
/// certain error conditions. /// certain error conditions. Keep it generous, to avoid false-positive under high load.
const HTTP_TIMEOUT: Duration = Duration::from_secs(20); const HTTP_TIMEOUT: Duration = Duration::from_secs(2 * 60);
#[derive(Clone)] #[derive(Clone)]
pub struct AuthInfo { pub struct AuthInfo {