This is an automated email from the ASF dual-hosted git repository.

stevel pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.3 by this push:
     new 351b149  HDFS-15626. TestWebHDFS.testLargeDirectory failing (#2380)
351b149 is described below

commit 351b1498d36f06dc54c21be241fd54ed15bc4fdb
Author: Mukund Thakur <[email protected]>
AuthorDate: Tue Oct 13 17:57:55 2020 +0530

    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
---
 .../src/test/java/org/apache/hadoop/hdfs/web/TestWebHDFS.java          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHDFS.java
 
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHDFS.java
index 3ee7fcb..e945962 100644
--- 
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHDFS.java
+++ 
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHDFS.java
@@ -52,6 +52,7 @@ import java.util.Collection;
 import java.util.EnumSet;
 import java.util.Iterator;
 import java.util.Map;
+import java.util.NoSuchElementException;
 import java.util.Random;
 
 import com.google.common.collect.ImmutableList;
@@ -399,7 +400,7 @@ public class TestWebHDFS {
             try {
               it.next();
               fail("Iterator should error if out of elements.");
-            } catch (IllegalStateException e) {
+            } catch (NoSuchElementException e) {
               // pass
             }
             return null;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to