Skip to content

Commit acdddff

Browse files
committed
HDFS-6829. DFSAdmin refreshSuperUserGroupsConfiguration failed in security cluster. (Contributed by zhaoyunjiong)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1619882 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4494e3c commit acdddff

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,9 @@ Release 2.6.0 - UNRELEASED
630630

631631
HDFS-6890. NFS readdirplus doesn't return dotdot attributes (brandonli)
632632

633+
HDFS-6829. DFSAdmin refreshSuperUserGroupsConfiguration failed in
634+
security cluster (zhaoyunjiong via Arpit Agarwal)
635+
633636
Release 2.5.0 - 2014-08-11
634637

635638
INCOMPATIBLE CHANGES

hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/DFSAdmin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ static int run(DistributedFileSystem dfs, String[] argv, int idx) throws IOExcep
356356
* Construct a DFSAdmin object.
357357
*/
358358
public DFSAdmin() {
359-
this(null);
359+
this(new HdfsConfiguration());
360360
}
361361

362362
/**

0 commit comments

Comments
 (0)