소스 검색

HDFS-10253. Fix TestRefreshCallQueue failure (Contributed by Xiaoyu Yao)

Vinayakumar B 9 년 전
부모
커밋
54b2e78fd2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java

+ 1 - 1
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java

@@ -92,7 +92,7 @@ public class TestRefreshCallQueue {
 
   @SuppressWarnings("serial")
   public static class MockCallQueue<E> extends LinkedBlockingQueue<E> {
-    public MockCallQueue(int cap, String ns, Configuration conf) {
+    public MockCallQueue(int levels, int cap, String ns, Configuration conf) {
       super(cap);
       mockQueueConstructions++;
     }