@@ -1100,6 +1100,9 @@ Release 2.7.3 - UNRELEASED
HADOOP-12772. NetworkTopologyWithNodeGroup.getNodeGroup() can loop
infinitely for invalid 'loc' values (Kuhu Shukla via kihwal)
+ HADOOP-12792. TestUserGroupInformation#testGetServerSideGroups fails in
+ chroot (Eric Badger via jlowe)
+
Release 2.7.2 - 2016-01-25
INCOMPATIBLE CHANGES
@@ -218,7 +218,7 @@ public class TestUserGroupInformation {
// get the groups
pp = Runtime.getRuntime().exec(Shell.WINDOWS ?
Shell.getWinUtilsPath() + " groups -F"
- : "id -Gn");
+ : "id -Gn " + userName);
br = new BufferedReader(new InputStreamReader(pp.getInputStream()));
String line = br.readLine();