HADOOP-10234. "hadoop.cmd jar" does not propagate exit code. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1558296 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
578dae9ef3
commit
a913cdb398
|
@ -605,6 +605,8 @@ Release 2.3.0 - UNRELEASED
|
||||||
HADOOP-10178. Configuration deprecation always emit "deprecated" warnings
|
HADOOP-10178. Configuration deprecation always emit "deprecated" warnings
|
||||||
when a new key is used. (Shanyu Zhao via cnauroth)
|
when a new key is used. (Shanyu Zhao via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-10234. "hadoop.cmd jar" does not propagate exit code. (cnauroth)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -143,7 +143,7 @@ call :updatepath %HADOOP_BIN_PATH%
|
||||||
|
|
||||||
call %JAVA% %JAVA_HEAP_MAX% %HADOOP_OPTS% -classpath %CLASSPATH% %CLASS% %hadoop-command-arguments%
|
call %JAVA% %JAVA_HEAP_MAX% %HADOOP_OPTS% -classpath %CLASSPATH% %CLASS% %hadoop-command-arguments%
|
||||||
|
|
||||||
goto :eof
|
exit /b %ERRORLEVEL%
|
||||||
|
|
||||||
:fs
|
:fs
|
||||||
set CLASS=org.apache.hadoop.fs.FsShell
|
set CLASS=org.apache.hadoop.fs.FsShell
|
||||||
|
|
Loading…
Reference in New Issue