Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C6223200D3B for ; Fri, 27 Oct 2017 02:43:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C4B67160BF3; Fri, 27 Oct 2017 00:43:32 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1E1121609E5 for ; Fri, 27 Oct 2017 02:43:31 +0200 (CEST) Received: (qmail 58729 invoked by uid 500); 27 Oct 2017 00:43:31 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 58715 invoked by uid 99); 27 Oct 2017 00:43:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Oct 2017 00:43:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 21491DFAB4; Fri, 27 Oct 2017 00:43:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jzhuge@apache.org To: common-commits@hadoop.apache.org Message-Id: <198c11690f254b5782873a810f125792@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hadoop git commit: HDFS-12710. HTTPFS HTTP max header size env variable is not respected in branch-2. Contributed by Istvan Fajth. Date: Fri, 27 Oct 2017 00:43:31 +0000 (UTC) archived-at: Fri, 27 Oct 2017 00:43:32 -0000 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 Authored: Thu Oct 26 17:41:53 2017 -0700 Committer: John Zhuge 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: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org