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:
parent
21e3ed3449
commit
a941bbd0c9
|
@ -30,8 +30,8 @@ use crate::tools::{
|
|||
};
|
||||
|
||||
/// Timeout used for several HTTP operations that are expected to finish quickly but may block in
|
||||
/// certain error conditions.
|
||||
const HTTP_TIMEOUT: Duration = Duration::from_secs(20);
|
||||
/// certain error conditions. Keep it generous, to avoid false-positive under high load.
|
||||
const HTTP_TIMEOUT: Duration = Duration::from_secs(2 * 60);
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct AuthInfo {
|
||||
|
|
Loading…
Reference in New Issue