theoryxu commented on code in PR #5629: URL: https://github.com/apache/gravitino/pull/5629#discussion_r1856005651
########## authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/RangerHelper.java: ########## @@ -86,6 +86,9 @@ public RangerHelper( */ void checkPolicyItemAccess(RangerPolicy.RangerPolicyItem policyItem) throws AuthorizationPluginException { + if (!isGravitinoManagedPolicyItemAccess(policyItem)) { + return; Review Comment: > line 91: this function only checks managed policy, that is fine. line 94: there should be only one item in the managed policy, this is fine too. line 98 and then on: check if there are duplicate items ... how could that happen? fixed it -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org