Skip to content

Commit

Permalink
Increase sleep time when waiting for ES/OS backend
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
yurishkuro committed Oct 21, 2022
1 parent f952cfe commit b9805f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/es-integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ wait_for_it() {
local counter=0
local max_counter=60
while [[ "$(curl ${params[@]} ${url})" != "200" && ${counter} -le ${max_counter} ]]; do
sleep 2
sleep 5
counter=$((counter+1))
echo "waiting for ${url} to be up..."
if [ ${counter} -eq ${max_counter} ]; then
Expand Down

0 comments on commit b9805f7

Please sign in to comment.