Aditi102005 opened a new pull request, #10322: URL: https://github.com/apache/gravitino/pull/10322
### What changes were proposed in this pull request? This PR fixes malformed role names in the error handling of the `revokeRolesFromGroup` operation. Previously, the code used: `StringUtils.join(request.getRoleNames())` which concatenated role names without any delimiter. For example: role1role2 This PR updates the code to include a comma delimiter: `StringUtils.join(request.getRoleNames(), ",")` which produces a readable output such as: role1,role2 ### Why are the changes needed? This improves the readability of error messages when multiple roles are involved and keeps the behavior consistent with the existing `revokeRolesFromUser` implementation. ### Does this PR introduce any user-facing change? No functional change. This only improves error message formatting. ### Related Issue Fixes #10222 -- 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]
