-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/72032/
-----------------------------------------------------------
Review request for ranger.
Bugs: RANGER-2708
https://issues.apache.org/jira/browse/RANGER-2708
Repository: ranger
Description
-------
In RangerBizUtil#checkUsrPermForPolicy we can find this piece of code:
matchFound = (publicGroupId != null && publicGroupId ==
permMap.getGroupId()) || isGroupInList(permMap.getGroupId(), userGroups);
publicGroupId and permMap.getGroupId() are both Long so testing equality using
"==" is wrong and only works "by accident" or not at all depending on the JVM.
Diffs
-----
security-admin/src/main/java/org/apache/ranger/biz/RangerBizUtil.java
21308b1e7
Diff: https://reviews.apache.org/r/72032/diff/1/
Testing
-------
Thanks,
Lars Francke