Repository: hadoop Updated Branches: refs/heads/branch-2 2caed865e -> 6afc75f87
HDFS-7472. Fix typo in message of ReplicaNotFoundException. Contributed by Masatake Iwasaki. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/6afc75f8 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/6afc75f8 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/6afc75f8 Branch: refs/heads/branch-2 Commit: 6afc75f87b52b9bb6d173bcd2a319d6abac0bb18 Parents: 2caed86 Author: Haohui Mai <[email protected]> Authored: Fri Dec 5 11:23:13 2014 -0800 Committer: Haohui Mai <[email protected]> Committed: Fri Dec 5 11:23:32 2014 -0800 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hadoop/hdfs/server/datanode/ReplicaNotFoundException.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/6afc75f8/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 6ec10ae..821d067 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -279,6 +279,9 @@ Release 2.7.0 - UNRELEASED HDFS-7448 TestBookKeeperHACheckpoints fails in trunk build (Akira Ajisaka via stevel) + HDFS-7472. Fix typo in message of ReplicaNotFoundException. + (Masatake Iwasaki via wheat9) + Release 2.6.1 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/6afc75f8/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java index 124574b..b159d3a 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/ReplicaNotFoundException.java @@ -37,7 +37,7 @@ public class ReplicaNotFoundException extends IOException { public final static String NON_EXISTENT_REPLICA = "Cannot append to a non-existent replica "; public final static String UNEXPECTED_GS_REPLICA = - "Cannot append to a replica with unexpeted generation stamp "; + "Cannot append to a replica with unexpected generation stamp "; public ReplicaNotFoundException() { super();
