HDFS-5370. Merge 1532899 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1532902 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f35f88b1cf
commit
17b20d742d
|
@ -148,6 +148,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