svn merge -c 1188436 from trunk for HDFS-2497.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23-PB@1229491 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2012-01-10 09:16:05 +00:00
parent fe433585d6
commit ae07b88523
2 changed files with 4 additions and 2 deletions

View File

@ -24,6 +24,8 @@ Release 0.23-PB - Unreleased
HDFS-2481 Unknown protocol: org.apache.hadoop.hdfs.protocol.ClientProtocol (sanjay)
HDFS-2497 Fix TestBackupNode failure. (suresh)
Release 0.23.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -82,13 +82,13 @@ public class NamenodeRegistrationWritable implements Writable {
rpcAddress = Text.readString(in);
httpAddress = Text.readString(in);
role = NamenodeRole.valueOf(Text.readString(in));
storageInfo = new StorageInfoWritable();
storageInfo.readFields(in);
}
public static NamenodeRegistrationWritable convert(NamenodeRegistration reg) {
return new NamenodeRegistrationWritable(reg.getAddress(),
reg.getHttpAddress(), reg.getRole(),
reg);
reg.getHttpAddress(), reg.getRole(), reg);
}
public NamenodeRegistration convert() {