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

(cherry picked from commit 54b2e78fd2)
This commit is contained in:
Vinayakumar B 2016-04-03 13:27:49 +05:30
parent 92a3dbe44f
commit aa38748997
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public void tearDown() throws Exception {
@SuppressWarnings("serial") @SuppressWarnings("serial")
public static class MockCallQueue<E> extends LinkedBlockingQueue<E> { 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); super(cap);
mockQueueConstructions++; mockQueueConstructions++;
} }