khmgobe commented on code in PR #4249:
URL: https://github.com/apache/gravitino/pull/4249#discussion_r1690713827
##########
core/src/main/java/org/apache/gravitino/proto/RoleEntitySerDe.java:
##########
@@ -44,7 +44,7 @@ public Role serialize(RoleEntity roleEntity) {
.setName(roleEntity.name())
.setAuditInfo(new
AuditInfoSerDe().serialize(roleEntity.auditInfo()));
- for (SecurableObject securableObject : roleEntity.securableObjects()) {
+ for (org.apache.gravitino.authorization.SecurableObject securableObject :
roleEntity.securableObjects()) {
Review Comment:
Yes, you must use org.apache.gravitino.proto.SecurableObject rather than
org.apache.gravitino.authorization.SecurableObject to function normally.
--
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]