HDFS-3160. httpfs should exec catalina instead of forking it. Contributed by Roman Shaposhnik
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1306665 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
17d22e6dc4
commit
e7444b2a07
|
@ -55,8 +55,8 @@ if [ "${1}" = "stop" ]; then
|
|||
fi
|
||||
|
||||
if [ "${HTTPFS_SILENT}" != "true" ]; then
|
||||
${HTTPFS_CATALINA_HOME}/bin/catalina.sh "$@"
|
||||
exec ${HTTPFS_CATALINA_HOME}/bin/catalina.sh "$@"
|
||||
else
|
||||
${HTTPFS_CATALINA_HOME}/bin/catalina.sh "$@" > /dev/null
|
||||
exec ${HTTPFS_CATALINA_HOME}/bin/catalina.sh "$@" > /dev/null
|
||||
fi
|
||||
|
||||
|
|
|
@ -767,6 +767,9 @@ Release 0.23.2 - UNRELEASED
|
|||
|
||||
HDFS-3101. Cannot read empty file using WebHDFS. (szetszwo)
|
||||
|
||||
HDFS-3160. httpfs should exec catalina instead of forking it.
|
||||
(Roman Shaposhnik via eli)
|
||||
|
||||
Release 0.23.1 - 2012-02-17
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue