kumaab commented on code in PR #901:
URL: https://github.com/apache/ranger/pull/901#discussion_r3047371993


##########
ranger-authn/src/main/java/org/apache/ranger/authz/handler/jwt/RangerJwtAuthHandler.java:
##########
@@ -99,6 +101,12 @@ public void initialize(final Properties config) throws 
Exception {
             audiences = Arrays.asList(audiencesStr.split(","));
         }
 
+        // setup issuers if configured
+        String issuersStr = config.getProperty(KEY_JWT_ISS);
+        if (StringUtils.isNotBlank(issuersStr)) {
+            issuers = Arrays.asList(issuersStr.split(","));

Review Comment:
   There is only going to be one issuer with this current implementation, 
please update.



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