HDFS-14487. Missing Space in Client Error Message (Contributed by Shweta Yakkali via Daniel Templeton)

Change-Id: I0f8ce74a35ab24fe94fd0e57d8247bb3fa575e6f
This commit is contained in:
Shweta Yakkali 2019-06-18 10:20:40 -07:00 committed by Daniel Templeton
parent 3ab77d9bc9
commit 3c1a1ceea9
1 changed files with 1 additions and 1 deletions

View File

@ -965,7 +965,7 @@ protected void completeFile(ExtendedBlock last) throws IOException {
} }
try { try {
if (retries == 0) { if (retries == 0) {
throw new IOException("Unable to close file because the last block" throw new IOException("Unable to close file because the last block "
+ last + " does not have enough number of replicas."); + last + " does not have enough number of replicas.");
} }
retries--; retries--;