This is an automated email from the ASF dual-hosted git repository.
liuml07 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 44de193 HDFS-15325. TestRefreshCallQueue is failing due to changed
CallQueue constructor. Contributed by Fengnan Li
44de193 is described below
commit 44de193bec3eb9cc0e95f8b2f609060dd914eb94
Author: Mingliang Liu <[email protected]>
AuthorDate: Sat May 2 20:56:29 2020 -0700
HDFS-15325. TestRefreshCallQueue is failing due to changed CallQueue
constructor. Contributed by Fengnan Li
---
.../src/test/java/org/apache/hadoop/TestRefreshCallQueue.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java
index faac1c0..e21a5a3 100644
---
a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java
+++
b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/TestRefreshCallQueue.java
@@ -87,7 +87,8 @@ public class TestRefreshCallQueue {
@SuppressWarnings("serial")
public static class MockCallQueue<E> extends LinkedBlockingQueue<E> {
- public MockCallQueue(int levels, int cap, String ns, Configuration conf) {
+ public MockCallQueue(int levels, int cap, String ns, int[] capacityWeights,
+ Configuration conf) {
super(cap);
mockQueueConstructions++;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]