Skip to content

Commit

Permalink
Adjust 'verify_health' iterations (canonical#466)
Browse files Browse the repository at this point in the history
Adjust the number of iterations for the 'verify_health' bash helper.
This is apparently needed for the 'require-osd-release' functionality
recently introduced.

Signed-off-by: Luciano Lo Giudice <[email protected]>
  • Loading branch information
lmlg authored Nov 12, 2024
1 parent dffff60 commit 22ef96f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/actionutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ function verify_bootstrap_configs() {
}

function verify_health() {
for i in {0..9}; do
for i in {0..100}; do
if [ "$( sudo microceph.ceph health )" = "HEALTH_OK" ] ; then
echo "HEALTH_OK found"
return
Expand Down

0 comments on commit 22ef96f

Please sign in to comment.