suvodeep-pyne commented on code in PR #16709:
URL: https://github.com/apache/pinot/pull/16709#discussion_r2308793518
##########
pinot-common/src/main/java/org/apache/pinot/common/audit/AuditConfig.java:
##########
@@ -84,10 +90,27 @@ public void setExcludedEndpoints(String excludedEndpoints) {
_excludedEndpoints = excludedEndpoints;
}
+ public String getUseridHeader() {
+ return _useridHeader;
+ }
+
+ public void setUseridHeader(String useridHeader) {
+ _useridHeader = useridHeader;
+ }
+
+ public String getUseridJwtClaimName() {
+ return _useridJwtClaimName;
+ }
+
+ public void setUseridJwtClaimName(String useridJwtClaimName) {
+ _useridJwtClaimName = useridJwtClaimName;
+ }
+
@Override
public String toString() {
return "AuditConfig{" + "enabled=" + _enabled + ", captureRequestPayload="
+ _captureRequestPayload
+ ", captureRequestHeaders='" + _captureRequestHeaders + "',
maxPayloadSize=" + _maxPayloadSize
- + ", excludedEndpoints='" + _excludedEndpoints + "'}";
+ + ", excludedEndpoints='" + _excludedEndpoints + "', identityHeader='"
+ _useridHeader
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]