You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-issues@jackrabbit.apache.org by "Angela Schreiber (Jira)" <ji...@apache.org> on 2020/11/25 15:50:00 UTC

[jira] [Created] (OAK-9284) LdapIdentityProvider.listGroups logs misleading warning

Angela Schreiber created OAK-9284:
-------------------------------------

             Summary: LdapIdentityProvider.listGroups logs misleading warning
                 Key: OAK-9284
                 URL: https://issues.apache.org/jira/browse/OAK-9284
             Project: Jackrabbit Oak
          Issue Type: Bug
          Components: auth-ldap
            Reporter: Angela Schreiber
            Assignee: Angela Schreiber


{code}
while (iter.hasNext()) {
                        try {
                            return createGroup(iter.next(), null);
                        } catch (LdapInvalidAttributeValueException e) {
                            log.warn("Error while creating external user object", e);
                        }
                    }
{code}

should probably rather log 

{code}
log.warn("Error while creating external group object", e);
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)