Revert "SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)"

This reverts commit 6b55d79bf3.
This commit is contained in:
Christine Poerschke 2020-06-23 16:34:06 +01:00
parent 6b55d79bf3
commit b4b641ea44
1 changed files with 1 additions and 1 deletions

View File

@ -874,7 +874,7 @@ function stop_solr() {
kill -9 $SOLR_PID
echo "Killed process $SOLR_PID"
rm -f "$SOLR_PID_DIR/solr-$SOLR_PORT.pid"
sleep 10
sleep 1
fi
CHECK_PID=`ps auxww | awk '{print $2}' | grep -w $SOLR_PID | sort -r | tr -d ' '`