Merge "Increase the Elasticsearch service timeout"

This commit is contained in:
Zuul 2018-08-12 14:17:08 +00:00 committed by Gerrit Code Review
commit bedc8a8343
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ function configure_elasticsearch {
function _check_elasticsearch_ready {
# poll elasticsearch to see if it's started
if ! wait_for_service 30 http://localhost:9200; then
if ! wait_for_service 120 http://localhost:9200; then
die $LINENO "Maximum timeout reached. Could not connect to ElasticSearch"
fi
}