tkalkirill commented on code in PR #5283:
URL: https://github.com/apache/ignite-3/pull/5283#discussion_r1969168290


##########
modules/network/src/integrationTest/java/org/apache/ignite/internal/network/netty/ItConnectionManagerTest.java:
##########
@@ -308,7 +305,26 @@ public void testConnectMisconfiguredClient() throws 
Exception {
     public void testStartTwice() throws Exception {
         ConnectionManagerWrapper server = startManager(4000);
 
-        assertThrows(IgniteInternalException.class, 
server.connectionManager::start);
+        IgniteInternalException exception = (IgniteInternalException) 
assertThrows(
+                IgniteInternalException.class,
+                server.connectionManager::start,
+                "Attempted to start an already started connection manager"
+        );
+
+        assertEquals("IGN-CMN--1", exception.codeAsString());

Review Comment:
   https://issues.apache.org/jira/browse/IGNITE-24615



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to