Browse code

Merge "Increase the Elasticsearch service timeout"

Zuul authored on 2018/08/12 23:17:08
Showing 1 changed files
... ...
@@ -49,7 +49,7 @@ function configure_elasticsearch {
49 49
 
50 50
 function _check_elasticsearch_ready {
51 51
     # poll elasticsearch to see if it's started
52
-    if ! wait_for_service 30 http://localhost:9200; then
52
+    if ! wait_for_service 120 http://localhost:9200; then
53 53
         die $LINENO "Maximum timeout reached. Could not connect to ElasticSearch"
54 54
     fi
55 55
 }