mirror of https://github.com/interlegis/sapl.git
Edward
6 years ago
committed by
GitHub
1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
#!/bin/bash |
|||
|
|||
echo "Waiting for solr connection at $SOLR_URL ..." |
|||
while true; do |
|||
echo "$SOLR_URL/solr/admin/collections?action=LIST" |
|||
RESULT=$(curl -s -o /dev/null -I "$SOLR_URL/solr/admin/collections?action=LIST" -w '%{http_code}') |
|||
echo $RESULT |
|||
if [ "$RESULT" -eq '200' ]; then |
|||
echo "Solr server is up!" |
|||
break |
|||
else |
|||
sleep 3 |
|||
fi |
|||
done |
Loading…
Reference in new issue