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:
Tsz-wo Sze 2014-03-26 17:03:05 +00:00
parent c00703dd08
commit a206399afd
2 changed files with 4 additions and 0 deletions

View File

@ -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)

View File

@ -55,6 +55,7 @@ public Appendable append(CharSequence csq) {
+ " is not yet opened.");
}
out.print(csq);
out.flush();
}
return this;
}