You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2020/06/23 15:35:33 UTC

[lucene-solr] branch master updated (6b55d79 -> 710fe3a)

This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 6b55d79  SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)
     new b4b641e  Revert "SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)"
     new 710fe3a  SOLR-14502: increase bin/solr's post kill sleep (from 1s to 10s)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[lucene-solr] 02/02: SOLR-14502: increase bin/solr's post kill sleep (from 1s to 10s)

Posted by cp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 710fe3a107e91eb7f15fd23df455341168929747
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Tue Jun 23 16:14:27 2020 +0100

    SOLR-14502: increase bin/solr's post kill sleep (from 1s to 10s)
---
 solr/bin/solr | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/bin/solr b/solr/bin/solr
index 1bbe3b3..83d247c 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 1
+    sleep 10
   fi
 
   CHECK_PID=`ps auxww | awk '{print $2}' | grep -w $SOLR_PID | sort -r | tr -d ' '`


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

Posted by cp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b4b641ea44e0c8595aa03ed6fa473a1c1b16bfd9
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Tue Jun 23 16:34:06 2020 +0100

    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 83d247c..1bbe3b3 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 ' '`