未验证 提交 77d24def 编写于 作者: J JasonWong 提交者: GitHub

[ISSUE# 2325] Use CopyOnWriteArrayList to avoid possible thread safety issues

上级 f58dbc3e
...@@ -19,7 +19,6 @@ package org.apache.rocketmq.broker.out; ...@@ -19,7 +19,6 @@ package org.apache.rocketmq.broker.out;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Vector;
import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.CopyOnWriteArrayList; import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.CountDownLatch; import java.util.concurrent.CountDownLatch;
...@@ -123,7 +122,7 @@ public class BrokerOuterAPI { ...@@ -123,7 +122,7 @@ public class BrokerOuterAPI {
final int timeoutMills, final int timeoutMills,
final boolean compressed) { final boolean compressed) {
final List<RegisterBrokerResult> registerBrokerResultList = new Vector<>(); final List<RegisterBrokerResult> registerBrokerResultList = new CopyOnWriteArrayList<>();
List<String> nameServerAddressList = this.remotingClient.getNameServerAddressList(); List<String> nameServerAddressList = this.remotingClient.getNameServerAddressList();
if (nameServerAddressList != null && nameServerAddressList.size() > 0) { if (nameServerAddressList != null && nameServerAddressList.size() > 0) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册