summaryrefslogtreecommitdiff
path: root/textproc/apache-solr/files/patch-bin_solr
diff options
context:
space:
mode:
authorMatthias Fechner <mfechner@FreeBSD.org>2021-01-01 09:28:55 +0000
committerMatthias Fechner <mfechner@FreeBSD.org>2021-01-01 09:28:55 +0000
commit7ba0e5194796ca573e144398e6f9e2c249f35e32 (patch)
tree0467be735e434020efaa8f3c0b65e92baa9486ce /textproc/apache-solr/files/patch-bin_solr
parentUpdate to 1.3.1. (diff)
Update to 8.7.0.
Changelog: https://lucene.apache.org/solr/8_7_0/changes/Changes.html
Notes
Notes: svn path=/head/; revision=559814
Diffstat (limited to 'textproc/apache-solr/files/patch-bin_solr')
-rw-r--r--textproc/apache-solr/files/patch-bin_solr10
1 files changed, 5 insertions, 5 deletions
diff --git a/textproc/apache-solr/files/patch-bin_solr b/textproc/apache-solr/files/patch-bin_solr
index 47894c4bf569..0ea5bdcbddd3 100644
--- a/textproc/apache-solr/files/patch-bin_solr
+++ b/textproc/apache-solr/files/patch-bin_solr
@@ -1,11 +1,11 @@
---- bin/solr.orig 2020-03-30 12:29:06 UTC
+--- bin/solr.orig 2020-10-28 09:40:06 UTC
+++ bin/solr
-@@ -2236,13 +2236,12 @@ function start_solr() {
+@@ -2255,13 +2255,12 @@ function start_solr() {
echo ""
fi
# no lsof on cygwin though
- if lsof -v 2>&1 | grep -q revision; then
- echo -n "Waiting up to $SOLR_STOP_WAIT seconds to see Solr running on port $SOLR_PORT"
+ echo -n "Waiting up to $SOLR_START_WAIT seconds to see Solr running on port $SOLR_PORT"
# Launch in a subshell to show the spinner
(loops=0
while true
@@ -14,8 +14,8 @@
+ running=$(sockstat -ls -P tcp -p $SOLR_PORT | grep LISTEN)
if [ -z "$running" ]; then
slept=$((loops * 2))
- if [ $slept -lt $SOLR_STOP_WAIT ]; then
-@@ -2260,13 +2259,6 @@ function start_solr() {
+ if [ $slept -lt $SOLR_START_WAIT ]; then
+@@ -2279,13 +2278,6 @@ function start_solr() {
fi
done) &
spinner $!