HADOOP-8270. hadoop-daemon.sh stop action should return 0 for an already stopped service. Contributed by Roman Shaposhnik
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1325069 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aca6ca0059
commit
b31d9d9d86
|
@ -346,6 +346,9 @@ Release 2.0.0 - UNRELEASED
|
|||
HADOOP-8264. Remove irritating double double quotes in front of hostname
|
||||
(Bernd Fondermann via bobby)
|
||||
|
||||
HADOOP-8270. hadoop-daemon.sh stop action should return 0 for an
|
||||
already stopped service. (Roman Shaposhnik via eli)
|
||||
|
||||
BREAKDOWN OF HADOOP-7454 SUBTASKS
|
||||
|
||||
HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)
|
||||
|
|
|
@ -167,11 +167,9 @@ case $startStop in
|
|||
kill `cat $pid`
|
||||
else
|
||||
echo no $command to stop
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo no $command to stop
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
||||
|
|
Loading…
Reference in New Issue