HDFS-6115. Call flush() for every append on block scan verification log. Contributed by Vinayakumar B
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1581936 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c00703dd08
commit
a206399afd
@ -703,6 +703,9 @@ Release 2.4.0 - UNRELEASED
|
||||
HDFS-6130. NPE when upgrading namenode from fsimages older than -32.
|
||||
(wheat9)
|
||||
|
||||
HDFS-6115. Call flush() for every append on block scan verification log.
|
||||
(Vinayakumar B via szetszwo)
|
||||
|
||||
BREAKDOWN OF HDFS-5698 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-5717. Save FSImage header in protobuf. (Haohui Mai via jing9)
|
||||
|
@ -55,6 +55,7 @@ public Appendable append(CharSequence csq) {
|
||||
+ " is not yet opened.");
|
||||
}
|
||||
out.print(csq);
|
||||
out.flush();
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user