File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
dubbo-rpc/dubbo-rpc-dubbo/src/main/java/org/apache/dubbo/rpc/protocol/dubbo Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 5858import java .util .concurrent .CompletableFuture ;
5959import java .util .concurrent .ConcurrentHashMap ;
6060import java .util .concurrent .ConcurrentMap ;
61- import java .util .concurrent .CopyOnWriteArrayList ;
6261
6362import static org .apache .dubbo .common .constants .CommonConstants .GROUP_KEY ;
6463import static org .apache .dubbo .common .constants .CommonConstants .INTERFACE_KEY ;
@@ -544,7 +543,7 @@ private void batchClientRefIncr(List<ReferenceCountExchangeClient> referenceCoun
544543 * @return
545544 */
546545 private List <ReferenceCountExchangeClient > buildReferenceCountExchangeClientList (URL url , int connectNum ) {
547- List <ReferenceCountExchangeClient > clients = new CopyOnWriteArrayList <>();
546+ List <ReferenceCountExchangeClient > clients = new ArrayList <>();
548547
549548 for (int i = 0 ; i < connectNum ; i ++) {
550549 clients .add (buildReferenceCountExchangeClient (url ));
You can’t perform that action at this time.
0 commit comments