From b4b641ea44e0c8595aa03ed6fa473a1c1b16bfd9 Mon Sep 17 00:00:00 2001 From: Christine Poerschke Date: Tue, 23 Jun 2020 16:34:06 +0100 Subject: [PATCH] Revert "SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)" This reverts commit 6b55d79bf37bcc92d08cef0c5c537ff95f9088f8. --- solr/bin/solr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/bin/solr b/solr/bin/solr index 83d247ccefa..1bbe3b388d8 100755 --- a/solr/bin/solr +++ b/solr/bin/solr @@ -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 ' '`