[
https://issues.apache.org/jira/browse/HBASE-17728?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15899953#comment-15899953
]
Enis Soztutar commented on HBASE-17728:
---------------------------------------
{{hbase.security.authentication}} is not a boolean. Why are you using
{{Configuration::GetBool()}}?
{code}
+ security_enabled_ = conf_->GetBool("hbase.security.authentication",
false);
{code}
The kerberos is not used. Did you intend to use it?
Also the way string constants are declared and named are slightly different.
Check client.h for examples:
{code}
static constexpr const char* kHBaseZookeeperQuorum_ =
"hbase.zookeeper.quorum";
{code}
> Create separate build target for Configuration classes
> ------------------------------------------------------
>
> Key: HBASE-17728
> URL: https://issues.apache.org/jira/browse/HBASE-17728
> Project: HBase
> Issue Type: Sub-task
> Reporter: Ted Yu
> Assignee: Ted Yu
> Attachments: 17728.v1.txt, 17728.v2.txt, 17728.v3.txt, 17728.v4.txt,
> 17728.v5.txt, 17728.v6.txt
>
>
> User is in security module.
> When User::isSecurityEnabled() is added, we need to query Configuration for
> security setting.
> However, this introduces a circular build dependency:
> BUILD FAILED: Cycle found: //connection:connection -> //security:security ->
> //core:core -> //connection:connection
> This issue is to create separate build target for Configuration which is
> depended upon by both core and security modules.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)