HADOOP-18306: Warnings should not be shown on cli console when linux user not present on client (#4474). Contributed by swamirishi.

This commit is contained in:
swamirishi 2022-06-27 17:20:58 -07:00 committed by GitHub
parent 823f5ee0d4
commit 43112bd472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -215,7 +215,7 @@ private Set<String> getUnixGroups(String user) throws IOException {
groups = resolvePartialGroupNames(user, e.getMessage(),
executor.getOutput());
} catch (PartialGroupNameException pge) {
LOG.warn("unable to return groups for user {}", user, pge);
LOG.debug("unable to return groups for user {}", user, pge);
return EMPTY_GROUPS_SET;
}
}