-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.5.0
-
Fix Version/s: 2.9.0, 3.0.0-beta1
-
Component/s: security
-
Labels:None
-
Target Version/s:
-
Hadoop Flags:Reviewed
CompositeGroupsMapping#getGroups
for (GroupMappingServiceProvider provider : providersList) { try { groups = provider.getGroups(user); } catch (Exception e) { //LOG.warn("Exception trying to get groups for user " + user, e); } if (groups != null && ! groups.isEmpty()) { groupSet.addAll(groups); if (!combined) break; } }
If anything fails inside the underlying groups mapping service provider, there's no way to tell what went wrong.