diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index dbfb7dfccd..422bc3ebad 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -403,6 +403,9 @@ Release 2.7.0 - UNRELEASED HADOOP-11266. Remove no longer supported activation properties for packaging from pom. (Masatake Iwasaki via wheat9) + HADOOP-11267. TestSecurityUtil fails when run with JDK8 because of empty + principal names. (Stephen Chu via wheat9) + Release 2.6.0 - UNRELEASED INCOMPATIBLE CHANGES diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/security/TestSecurityUtil.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/security/TestSecurityUtil.java index 8c60734c59..4616c9071d 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/security/TestSecurityUtil.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/security/TestSecurityUtil.java @@ -55,12 +55,8 @@ public void isOriginalTGTReturnsCorrectValues() { (null)); assertFalse(SecurityUtil.isTGSPrincipal (new KerberosPrincipal("blah"))); - assertFalse(SecurityUtil.isTGSPrincipal - (new KerberosPrincipal(""))); assertFalse(SecurityUtil.isTGSPrincipal (new KerberosPrincipal("krbtgt/hello"))); - assertFalse(SecurityUtil.isTGSPrincipal - (new KerberosPrincipal("/@"))); assertFalse(SecurityUtil.isTGSPrincipal (new KerberosPrincipal("krbtgt/foo@FOO"))); }