Merge "CI: allow Elasticsearch status to be green or yellow"

This commit is contained in:
Zuul 2021-05-12 10:54:35 +00:00 committed by Gerrit Code Review
commit 054ff2af7a

@ -42,8 +42,9 @@ function check_elasticsearch {
if ! curl "${args[@]}" $ELASTICSEARCH_URL > $output_path; then
return 1
fi
# NOTE(mgoddard): Status is yellow because no indices have been created.
if ! grep '"status":"yellow"' $output_path >/dev/null; then
# NOTE(mgoddard): Status may be yellow because no indices have been
# created.
if ! grep -E '"status":"(green|yellow)"' $output_path >/dev/null; then
return 1
fi
}