justinmclean opened a new issue, #10222: URL: https://github.com/apache/gravitino/issues/10222
### What would you like to be improved? PermissionOperations.revokeRolesFromGroup catches exceptions and passes role names to exception handling using StringUtils.join(request.getRoleNames()) (no delimiter). For multiple roles, this concatenates values (for example, role1role2) instead of producing a readable list. ### How should we improve? Use a delimiter when joining role names in the revoke-from-group catch path, consistent with nearby revoke-from-user behavior. Replace StringUtils.join(request.getRoleNames()) with StringUtils.join(request.getRoleNames(), ",") (or equivalent) -- 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]
