HDFS-15626. TestWebHDFS.testLargeDirectory failing (#2380)
Fixes the regression caused by HADOOP-17281, where the WebHDFS client listStatusIterator (correctly) throws NoSuchElementException when next() runs out of values. Contributed by Mukund Thakur. Change-Id: I6cec41c20467920cf21f169653553535414b2680
This commit is contained in:
parent
2a043b987c
commit
351b1498d3
@ -52,6 +52,7 @@
|
|||||||
import java.util.EnumSet;
|
import java.util.EnumSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.NoSuchElementException;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
@ -399,7 +400,7 @@ public Void run() throws IOException, URISyntaxException {
|
|||||||
try {
|
try {
|
||||||
it.next();
|
it.next();
|
||||||
fail("Iterator should error if out of elements.");
|
fail("Iterator should error if out of elements.");
|
||||||
} catch (IllegalStateException e) {
|
} catch (NoSuchElementException e) {
|
||||||
// pass
|
// pass
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user