Skip to content

Commit

Permalink
roachtest: wait longer for token return
Browse files Browse the repository at this point in the history
Previously tokens needed to be returned within 5 seconds of stopping the
workload. This resulted in failures in some of the perturbation/* tests
when using apply-to-all for replAC. This change bumps the window to 5
minutes to allow more times for the tokens to be returned.

Epic: none

Release note: None
  • Loading branch information
andrewbaptist committed Nov 14, 2024
1 parent 358b42f commit 4f1d077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/roachtestutil/validation_check.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,6 @@ func ValidateTokensReturned(
}
}
return nil
}, 5*time.Second)
}, 5*time.Minute)
}
}

0 comments on commit 4f1d077

Please sign in to comment.