HBASE-5167 We shouldn't be injecting 'Killing [daemon]' into logs, when we aren't doing that.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1230267 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ad571ab6c
commit
90a11d367f
|
@ -160,7 +160,7 @@ case $startStop in
|
|||
# kill -0 == see if the PID exists
|
||||
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
||||
echo -n stopping $command
|
||||
echo "`date` Killing $command" >> $loglog
|
||||
echo "`date` Terminating $command" >> $loglog
|
||||
kill `cat $pid` > /dev/null 2>&1
|
||||
while kill -0 `cat $pid` > /dev/null 2>&1; do
|
||||
echo -n "."
|
||||
|
|
Loading…
Reference in New Issue