瀏覽代碼

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

(cherry picked from commit 54b2e78fd28c9def42bec7f0418833bad352686c)
Vinayakumar B 9 年之前
父節點
當前提交
aa38748997

+ 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++;
     }