You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Kan Zhang (JIRA)" <ji...@apache.org> on 2010/08/11 20:16:18 UTC

[jira] Created: (HADOOP-6913) Circular initialization between UserGroupInformation and KerberosName

Circular initialization between UserGroupInformation and KerberosName
---------------------------------------------------------------------

                 Key: HADOOP-6913
                 URL: https://issues.apache.org/jira/browse/HADOOP-6913
             Project: Hadoop Common
          Issue Type: Bug
            Reporter: Kan Zhang
            Assignee: Kan Zhang


If the first call to UGI is UGI.setConfiguration(conf), it will try to initialize UGI class. During this initialization, the code calls KerberosName.setConfiguration(). KerberosName's static initializer will in turn call UGI.isSecurityEnabled(). Since UGI hasn't been completely initialized yet, isSecurityEnabled() will re-initialize UGI with a DEFAULT conf. As a result, the original conf used in UGI.setConfiguration(conf) will be overwritten by the DEFAULT conf.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.