svn merge -c 1581936 from trunk for HDFS-6115. Call flush() for every append on block scan verification log.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1581937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2014-03-26 17:03:57 +00:00
parent 847ef81ec6
commit e034eb46d8
2 changed files with 4 additions and 0 deletions

View File

@ -464,6 +464,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 @@ class RollingLogsImpl implements RollingLogs {
+ " is not yet opened.");
}
out.print(csq);
out.flush();
}
return this;
}