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:
Michael Stack 2012-01-11 21:44:20 +00:00
parent 5ad571ab6c
commit 90a11d367f
1 changed files with 1 additions and 1 deletions

View File

@ -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 "."