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:36:47 UTC

[lucene-solr] branch branch_8x updated (1575781 -> 2b72855)

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

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


    from 1575781  SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)
     new e64f5f6  Revert "SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)"
     new 2b72855  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 branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 2b728551c8624d7004b0cee74db1554c660a0830
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 3d09ccd..e178bcd 100755
--- a/solr/bin/solr
+++ b/solr/bin/solr
@@ -873,7 +873,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 branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit e64f5f6662d0b226107f19190dc066db51a2702b
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Tue Jun 23 16:35:57 2020 +0100

    Revert "SOLR-14702: increase bin/solr's post kill sleep (from 1s to 10s)"
    
    This reverts commit 15757815dfbcec19cbc9a2dd817f6f01559435f8.
---
 solr/bin/solr | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/bin/solr b/solr/bin/solr
index e178bcd..3d09ccd 100755
--- a/solr/bin/solr
+++ b/solr/bin/solr
@@ -873,7 +873,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 ' '`