Repository: hadoop Updated Branches: refs/heads/branch-2 46783158f -> 952aa3f16
HDFS-12710. HTTPFS HTTP max header size env variable is not respected in branch-2. Contributed by Istvan Fajth. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/952aa3f1 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/952aa3f1 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/952aa3f1 Branch: refs/heads/branch-2 Commit: 952aa3f168eb485e1fe7f045ab133399f6d626dc Parents: 4678315 Author: John Zhuge <[email protected]> Authored: Thu Oct 26 17:41:53 2017 -0700 Committer: John Zhuge <[email protected]> Committed: Thu Oct 26 17:43:01 2017 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/952aa3f1/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh index 75b398e..8accc59 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh +++ b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh @@ -67,6 +67,8 @@ if [[ "${1}" = "start" || "${1}" = "run" ]]; then catalina_set_property "httpfs.admin.port" "${HTTPFS_ADMIN_PORT}" catalina_set_property "httpfs.http.port" "${HTTPFS_HTTP_PORT}" catalina_set_property "httpfs.http.hostname" "${HTTPFS_HTTP_HOSTNAME}" + catalina_set_property "httpfs.max.http.header.size" \ + "${HTTPFS_MAX_HTTP_HEADER_SIZE}" catalina_set_property "httpfs.ssl.enabled" "${HTTPFS_SSL_ENABLED}" catalina_set_property "httpfs.ssl.client.auth" "${HTTPFS_SSL_CLIENT_AUTH}" catalina_set_property "httpfs.ssl.enabled.protocols" \ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
