diff options
Diffstat (limited to 'src/main/docker/kibana/startup.sh')
-rwxr-xr-x | src/main/docker/kibana/startup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/docker/kibana/startup.sh b/src/main/docker/kibana/startup.sh index da289ae..1ea475a 100755 --- a/src/main/docker/kibana/startup.sh +++ b/src/main/docker/kibana/startup.sh @@ -43,7 +43,7 @@ then elastic_url=$(grep elasticsearch.host /usr/share/kibana/config/kibana.yml | cut -d\ -f2) while [ ! "$RES" -eq "0" ] && [ "$PING_TIMEOUT" -gt "0" ]; do - curl $elastic_url + curl -k $elastic_url RES=$? sleep $WAIT_TIME let PING_TIMEOUT=$PING_TIMEOUT-$WAIT_TIME |