HDFS-5370. Typo in Error Message: different between range in condition and range in error message. Contributed by Kousuke Saruta.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1532899 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
74a2191aae
commit
f28f5ed628
|
@ -392,6 +392,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
|
|
||||||
HDFS-5330. fix readdir and readdirplus for large directories (brandonli)
|
HDFS-5330. fix readdir and readdirplus for large directories (brandonli)
|
||||||
|
|
||||||
|
HDFS-5370. Typo in Error Message: different between range in condition
|
||||||
|
and range in error message. (Kousuke Saruta via suresh)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -403,7 +403,7 @@ implements ByteBufferReadable, CanSetDropBehind, CanSetReadahead,
|
||||||
|
|
||||||
//check offset
|
//check offset
|
||||||
if (offset < 0 || offset >= getFileLength()) {
|
if (offset < 0 || offset >= getFileLength()) {
|
||||||
throw new IOException("offset < 0 || offset > getFileLength(), offset="
|
throw new IOException("offset < 0 || offset >= getFileLength(), offset="
|
||||||
+ offset
|
+ offset
|
||||||
+ ", updatePosition=" + updatePosition
|
+ ", updatePosition=" + updatePosition
|
||||||
+ ", locatedBlocks=" + locatedBlocks);
|
+ ", locatedBlocks=" + locatedBlocks);
|
||||||
|
|
Loading…
Reference in New Issue