Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
HDFS-1409. BackupNode registration throwing UnsupportedActionExceptio…
Browse files Browse the repository at this point in the history
…n("register") instead of "journal". Contributed by Ching-Shen Chen.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hdfs/trunk@1134444 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
shvachko committed Jun 10, 2011
1 parent 365f426 commit b84a982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,10 @@ Release 0.22.0 - Unreleased
HDFS-1954. Improved corrupt files warning on NameNode web UI.
(Patrick Hunt via shv)

HDFS-1409. BackupNode registration throwing
UnsupportedActionException("register") instead of "journal".
(Ching-Shen Chen via shv)

OPTIMIZATIONS

HDFS-1140. Speedup INode.getPathComponents. (Dmytro Molkov via shv)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public BlocksWithLocations getBlocks(DatanodeInfo datanode, long size)
@Override // NamenodeProtocol
public NamenodeRegistration register(NamenodeRegistration registration
) throws IOException {
throw new UnsupportedActionException("journal");
throw new UnsupportedActionException("register");
}

@Override // NamenodeProtocol
Expand Down

0 comments on commit b84a982

Please sign in to comment.