Copilot commented on code in PR #722:
URL: https://github.com/apache/ranger/pull/722#discussion_r2480224964


##########
agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerAccessRequestImpl.java:
##########
@@ -393,6 +404,7 @@ public StringBuilder toString(StringBuilder sb) {
         
sb.append("resourceElementMatchingScopes={").append(resourceElementMatchingScopes).append("}
 ");
         sb.append("clusterName={").append(clusterName).append("} ");
         sb.append("clusterType={").append(clusterType).append("} ");
+        sb.append("inlinePolicy=").append(inlinePolicy).append("} ");

Review Comment:
   Missing opening brace in toString output. Should be 
`sb.append("inlinePolicy={").append(inlinePolicy).append("} ");` to match the 
pattern used for other fields.
   ```suggestion
           sb.append("inlinePolicy={").append(inlinePolicy).append("} ");
   ```



-- 
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]

Reply via email to