Return-Path: X-Original-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9A8C791D9 for ; Wed, 22 Feb 2012 22:38:10 +0000 (UTC) Received: (qmail 59657 invoked by uid 500); 22 Feb 2012 22:38:10 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 59537 invoked by uid 500); 22 Feb 2012 22:38:10 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 59528 invoked by uid 99); 22 Feb 2012 22:38:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Feb 2012 22:38:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Feb 2012 22:38:09 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 45727335304 for ; Wed, 22 Feb 2012 22:37:49 +0000 (UTC) Date: Wed, 22 Feb 2012 22:37:49 +0000 (UTC) From: "Allen Wittenauer (Commented) (JIRA)" To: common-issues@hadoop.apache.org Message-ID: <1739889260.6684.1329950269285.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <425849987.6407.1329947869012.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (HADOOP-8100) share web server information for http filters MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HADOOP-8100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13214067#comment-13214067 ] Allen Wittenauer commented on HADOOP-8100: ------------------------------------------ Oh, forgot: {code} static final String PREFIX = "hadoop.http.authentication."; ... for (Map.Entry entry : conf) { String name = entry.getKey(); if (name.startsWith(PREFIX)) { String value = conf.get(name); name = name.substring(PREFIX.length()); filterConfig.put(name, value); } {code} ... is the reason why it has authentication in it. This will allow anyone who is writing against AuthenticationFilterInitializer to use it. While I'm planning on replacing that locally, others may not want to do that. > share web server information for http filters > --------------------------------------------- > > Key: HADOOP-8100 > URL: https://issues.apache.org/jira/browse/HADOOP-8100 > Project: Hadoop Common > Issue Type: New Feature > Affects Versions: 0.24.0, 1.0.0, 0.23.2 > Reporter: Allen Wittenauer > Attachments: HADOOP-8100-branch-1.0.patch > > > This is a simple fix which shares the web server bind information for consumption down stream for 3rd party plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira