HDFS-7899. Improve EOF error message (Contributed by Jagadesh Kiran N)

This commit is contained in:
Vinayakumar B 2015-10-06 15:42:36 +05:30
parent 5f6edb30c2
commit 874c8ed239
2 changed files with 4 additions and 1 deletions

View File

@ -395,7 +395,8 @@ public static InputStream vintPrefixed(final InputStream input)
throws IOException {
final int firstByte = input.read();
if (firstByte == -1) {
throw new EOFException("Premature EOF: no length prefix available");
throw new EOFException(
"Unexpected EOF while trying to read response from server");
}
int size = CodedInputStream.readRawVarint32(firstByte, input);

View File

@ -1498,6 +1498,8 @@ Release 2.8.0 - UNRELEASED
HDFS-9154. [OEV-Doc] : Document does not mention about "-f" and "-r" options
(nijel via vinayakumarb)
HDFS-7899. Improve EOF error message (Jagadesh Kiran N via vinayakumarb)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES