From 5cdce48a6a8380c185cf962a8e0768be006230e2 Mon Sep 17 00:00:00 2001 From: Ryan Cragun Date: Wed, 27 Sep 2023 14:50:28 -0600 Subject: [PATCH] replication: wait longer for replication to resync (#23336) Signed-off-by: Ryan Cragun --- .../scripts/verify-replication-status.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enos/modules/vault_verify_performance_replication/scripts/verify-replication-status.sh b/enos/modules/vault_verify_performance_replication/scripts/verify-replication-status.sh index f401242d6f..687ac3eb56 100644 --- a/enos/modules/vault_verify_performance_replication/scripts/verify-replication-status.sh +++ b/enos/modules/vault_verify_performance_replication/scripts/verify-replication-status.sh @@ -81,5 +81,5 @@ check_pr_status() { return 0 } -# Retry a few times because it can take some time for replication to sync -retry 5 check_pr_status +# Retry for a while because it can take some time for replication to sync +retry 10 check_pr_status