mirror of https://github.com/apache/lucene.git
SOLR-590
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@663089 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ef8a49d414
commit
17c90ce718
|
@ -421,6 +421,8 @@ Bug Fixes
|
|||
hl.usePhraseHighligher=true URL param is used.
|
||||
(Bojan Smid via Otis Gospodnetic)
|
||||
|
||||
34. SOLR-590: Limitation in pgrep on Linux platform breaks script-utils fixUser. (Hannes Schmidt via billa)
|
||||
|
||||
Other Changes
|
||||
1. SOLR-135: Moved common classes to org.apache.solr.common and altered the
|
||||
build scripts to make two jars: apache-solr-1.3.jar and
|
||||
|
|
|
@ -49,7 +49,7 @@ function fixUser
|
|||
|
||||
if [[ "${oldwhoami}" == "" ]]
|
||||
then
|
||||
oldwhoami=`ps h -Hfp $(pgrep -g0 ${0##*/}) | tail -1|cut -f1 -d" "`
|
||||
oldwhoami=`ps h -Hfp $(pgrep -f -g0 $0) | tail -1|cut -f1 -d" "`
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue