You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by st...@apache.org on 2020/10/13 12:28:08 UTC

[hadoop] branch trunk updated: HADOOP-17303. TestWebHDFS.testLargeDirectory failing (#2380)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 3e1b1df  HADOOP-17303. TestWebHDFS.testLargeDirectory failing (#2380)
3e1b1df is described below

commit 3e1b1dfd7744e1eebb5bc09009f3fb77abe686db
Author: Mukund Thakur <mt...@cloudera.com>
AuthorDate: Tue Oct 13 17:57:55 2020 +0530

    HADOOP-17303. 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.
---
 .../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 9e4f727..a0308b9 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
@@ -55,6 +55,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;
@@ -404,7 +405,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: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org