HDFS-7472. Fix typo in message of ReplicaNotFoundException. Contributed by Masatake Iwasaki.
This commit is contained in:
parent
2caed865e9
commit
6afc75f87b
|
@ -279,6 +279,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
HDFS-7448 TestBookKeeperHACheckpoints fails in trunk build
|
HDFS-7448 TestBookKeeperHACheckpoints fails in trunk build
|
||||||
(Akira Ajisaka via stevel)
|
(Akira Ajisaka via stevel)
|
||||||
|
|
||||||
|
HDFS-7472. Fix typo in message of ReplicaNotFoundException.
|
||||||
|
(Masatake Iwasaki via wheat9)
|
||||||
|
|
||||||
Release 2.6.1 - UNRELEASED
|
Release 2.6.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class ReplicaNotFoundException extends IOException {
|
||||||
public final static String NON_EXISTENT_REPLICA =
|
public final static String NON_EXISTENT_REPLICA =
|
||||||
"Cannot append to a non-existent replica ";
|
"Cannot append to a non-existent replica ";
|
||||||
public final static String UNEXPECTED_GS_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() {
|
public ReplicaNotFoundException() {
|
||||||
super();
|
super();
|
||||||
|
|
Loading…
Reference in New Issue