HDFS-6885. Fix wrong use of BytesWritable in FSEditLogOp#RenameOp. Contributed by Yi Liu.
This commit is contained in:
parent
5f688453df
commit
bfbcfe7364
@ -2342,6 +2342,9 @@ Release 2.8.0 - UNRELEASED
|
||||
HDFS-8914. Document HA support in the HDFS HdfsDesign.md.
|
||||
(Lars Francke via wheat9)
|
||||
|
||||
HDFS-6885. Fix wrong use of BytesWritable in FSEditLogOp#RenameOp.
|
||||
(Yi Liu via wheat9)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -2705,9 +2705,10 @@ private static Rename[] readRenameOptions(DataInputStream in) throws IOException
|
||||
writable.readFields(in);
|
||||
|
||||
byte[] bytes = writable.getBytes();
|
||||
Rename[] options = new Rename[bytes.length];
|
||||
int len = writable.getLength();
|
||||
Rename[] options = new Rename[len];
|
||||
|
||||
for (int i = 0; i < bytes.length; i++) {
|
||||
for (int i = 0; i < len; i++) {
|
||||
options[i] = Rename.valueOf(bytes[i]);
|
||||
}
|
||||
return options;
|
||||
|
Loading…
Reference in New Issue
Block a user