Skip to content

Commit

Permalink
increase chaos timeout interval
Browse files Browse the repository at this point in the history
  • Loading branch information
ibalajiarun committed Oct 15, 2024
1 parent fc2a602 commit c5e68c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/forge/src/backend/k8s/swarm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,8 +733,8 @@ trait ChaosExperimentOps {
async fn list_stress_chaos(&self) -> Result<Vec<StressChaos>>;

async fn ensure_chaos_experiments_active(&self) -> Result<()> {
let timeout_duration = Duration::from_secs(300); // 5 minutes
let polling_interval = Duration::from_secs(5);
let timeout_duration = Duration::from_secs(600); // 10 minutes
let polling_interval = Duration::from_secs(10);

tokio::time::timeout(timeout_duration, async {
loop {
Expand Down

0 comments on commit c5e68c8

Please sign in to comment.