Skip to content

Commit

Permalink
change msg
Browse files Browse the repository at this point in the history
  • Loading branch information
gavingaozhangmin committed Oct 14, 2021
1 parent edb9d64 commit 836124d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/pulsar-daemon
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ rotate_out_log ()
start ()
{
if [ -f $pid ]; then
if kill -0 `cat "$pid"` > /dev/null 2>&1; then
echo $command running as process `cat "$pid"`. Stop it first.
if kill -0 `cat $pid` > /dev/null 2>&1; then
echo $command running as process `cat $pid`. Stop it first.
exit 1
fi
fi
Expand Down Expand Up @@ -222,7 +222,7 @@ case $startStop in
then
start
else
echo "WARNNING : $command is not stopped completely."
echo "WARNNING : $command failed restart, for $command is not stopped completely."
fi
;;

Expand Down

0 comments on commit 836124d

Please sign in to comment.