dimas-b commented on code in PR #499:
URL: https://github.com/apache/polaris/pull/499#discussion_r1863991213
##########
polaris-core/src/main/java/org/apache/polaris/core/auth/CoreAuthorizer.java:
##########
@@ -529,27 +542,26 @@ public void authorizeOrThrow(
}
}
- /**
- * Based on the required target/targetParent/secondary/secondaryParent
privileges mapped from
- * {@code authzOp}, determines whether the caller's set of
activatedGranteeIds is authorized for
- * the operation.
- */
- public boolean isAuthorized(
- @Nonnull AuthenticatedPolarisPrincipal authenticatedPolarisPrincipal,
- @Nonnull Set<PolarisBaseEntity> activatedEntities,
- @Nonnull PolarisAuthorizableOperation authzOp,
- @Nullable PolarisResolvedPathWrapper target,
- @Nullable PolarisResolvedPathWrapper secondary) {
- return isAuthorized(
- authenticatedPolarisPrincipal,
- activatedEntities,
- authzOp,
- target == null ? null : List.of(target),
- secondary == null ? null : List.of(secondary));
+ private boolean isSelfReset(
Review Comment:
updated
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]