We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a498f97 commit 577b1a1Copy full SHA for 577b1a1
src/main/java/com/dtstack/logstash/assembly/InputQueueList.java
@@ -28,9 +28,6 @@ public class InputQueueList {
28
29
private static ExecutorService executor = Executors.newFixedThreadPool(2);
30
31
- public InputQueueList() {
32
- }
33
-
34
private static List<LinkedBlockingQueue<Map<String, Object>>> queueList = Lists.newArrayList();
35
36
private final AtomicInteger index = new AtomicInteger(0);
@@ -40,6 +37,8 @@ public InputQueueList() {
40
37
private AtomicBoolean ato = new AtomicBoolean(false);
41
38
42
39
private ReentrantLock lock = new ReentrantLock();
+
+ public InputQueueList() {}
43
44
/**
45
*
0 commit comments