Github user kevdoran commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/91#discussion_r162443905
--- Diff:
nifi-registry-framework/src/main/java/org/apache/nifi/registry/security/authorization/AuthorizerFactory.java
---
@@ -164,6 +169,9 @@ public Authorizer getAuthorizer() throws
AuthorizerFactoryException {
// create each access policy provider
for (final
org.apache.nifi.registry.security.authorization.generated.AccessPolicyProvider
accessPolicyProvider : authorizerConfiguration.getAccessPolicyProvider()) {
+ if
(userGroupProviders.containsKey(accessPolicyProvider.getIdentifier())) {
--- End diff --
used the wrong map here, will update
---