adityamukho commented on code in PR #6299:
URL: https://github.com/apache/ignite-3/pull/6299#discussion_r2228748285


##########
modules/platforms/dotnet/Apache.Ignite/ErrorCodes.g.cs:
##########
@@ -450,8 +450,12 @@ public static class Network
             /// <summary> UnresolvableConsistentId error. </summary>
             public const int UnresolvableConsistentId = (GroupCode << 16) | (1 
& 0xFFFF);
 
-            /// <summary> PortInUse error. </summary>
-            public const int PortInUse = (GroupCode << 16) | (2 & 0xFFFF);
+            /// <summary> BindException error. </summary>
+            public const int Bind = (GroupCode << 16) | (2 & 0xFFFF);
+
+            /// <summary> Alias for Bind. This was the old name, now 
deprecated. </summary>
+            [Obsolete]
+            public const int PortInUse = Bind;

Review Comment:
   This can be resolved as this code is now being generated.



-- 
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