HDFS-16177. Bug fix for Util#receiveFile (#3310)
Reviewed-by: Hui Fei <ferhui@apache.org>
This commit is contained in:
parent
0e922aab41
commit
07627ef19e
@ -287,7 +287,7 @@ public static MD5Hash receiveFile(String url, List<File> localPaths,
|
|||||||
fos.getChannel().force(true);
|
fos.getChannel().force(true);
|
||||||
fos.close();
|
fos.close();
|
||||||
double writeSec = Math.max(((float)
|
double writeSec = Math.max(((float)
|
||||||
(flushStartTime - Time.monotonicNow())) / 1000.0, 0.001);
|
(Time.monotonicNow() - flushStartTime)) / 1000.0, 0.001);
|
||||||
xferCombined += writeSec;
|
xferCombined += writeSec;
|
||||||
xferStats.append(String
|
xferStats.append(String
|
||||||
.format(" Synchronous (fsync) write to disk of " +
|
.format(" Synchronous (fsync) write to disk of " +
|
||||||
|
Loading…
Reference in New Issue
Block a user