diff --git a/control-plane/agents/src/bin/core/tests/controller/mod.rs b/control-plane/agents/src/bin/core/tests/controller/mod.rs index 099d0e807..57f4db1ba 100644 --- a/control-plane/agents/src/bin/core/tests/controller/mod.rs +++ b/control-plane/agents/src/bin/core/tests/controller/mod.rs @@ -9,7 +9,7 @@ use stor_port::{ }; use serde_json::Value; -use std::str::FromStr; +use std::{str::FromStr, time::Duration}; use uuid::Uuid; /// Test that the content of the registry is correctly loaded from the persistent store on start up. @@ -225,6 +225,7 @@ async fn etcd_pagination() { .with_rest(false) .with_jaeger(false) .with_store_lease_ttl(lease_ttl) + .with_req_timeouts(Duration::from_millis(200), Duration::from_millis(200)) .build() .await .unwrap(); diff --git a/utils/deployer-cluster/src/lib.rs b/utils/deployer-cluster/src/lib.rs index 5166afeb0..fd6fdfa6f 100644 --- a/utils/deployer-cluster/src/lib.rs +++ b/utils/deployer-cluster/src/lib.rs @@ -204,7 +204,7 @@ impl Cluster { Some(opts) => opts, None => TimeoutOptions::new() .with_req_timeout(Duration::from_millis(500)) - .with_max_retries(10), + .with_max_retries(20), }; for x in 1 .. timeout_opts.max_retries().unwrap_or_default() { match client