guohao commented on code in PR #9954:
URL: https://github.com/apache/dubbo/pull/9954#discussion_r857377399


##########
dubbo-remoting/dubbo-remoting-api/src/test/java/org/apache/dubbo/remoting/api/ConnectionTest.java:
##########
@@ -88,4 +90,43 @@ public void connectSyncTest() throws Throwable {
 
 
     }
+
+    @Test
+    public void testMultiConnect() {
+        int port = NetUtils.getAvailablePort();
+        URL url = URL.valueOf("empty://127.0.0.1:" + port + "?foo=bar");
+        PortUnificationServer server = null;
+        try {
+            server = new PortUnificationServer(url);
+            server.bind();
+
+            Connection connection = new Connection(url);
+            ExecutorService service = Executors.newFixedThreadPool(10);

Review Comment:
   close it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to