This is an automated email from the ASF dual-hosted git repository.
abhi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git
The following commit(s) were added to refs/heads/master by this push:
new 9e8172aa8 RANGER-5436: Fix typo in variable name for namespace
permission (#789)
9e8172aa8 is described below
commit 9e8172aa87bb5167e2705706c5e00c8e2dc33d56
Author: Halim Kim <[email protected]>
AuthorDate: Tue Jan 6 13:14:27 2026 +0900
RANGER-5436: Fix typo in variable name for namespace permission (#789)
---
.../ranger/authorization/hbase/RangerAuthorizationCoprocessor.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/hbase-agent/src/main/java/org/apache/ranger/authorization/hbase/RangerAuthorizationCoprocessor.java
b/hbase-agent/src/main/java/org/apache/ranger/authorization/hbase/RangerAuthorizationCoprocessor.java
index 3ed37c837..ffd642613 100644
---
a/hbase-agent/src/main/java/org/apache/ranger/authorization/hbase/RangerAuthorizationCoprocessor.java
+++
b/hbase-agent/src/main/java/org/apache/ranger/authorization/hbase/RangerAuthorizationCoprocessor.java
@@ -1602,9 +1602,9 @@ private GrantRevokeRequest
createGrantData(AccessControlProtos.GrantRequest requ
break;
case Namespace:
- NamespacePermission namepsacePermission =
(NamespacePermission) userPerm.getPermission();
+ NamespacePermission namespacePermission =
(NamespacePermission) userPerm.getPermission();
- nameSpace = namepsacePermission.getNamespace();
+ nameSpace = namespacePermission.getNamespace();
break;
}