adityamukho commented on code in PR #6299: URL: https://github.com/apache/ignite-3/pull/6299#discussion_r2225716458
########## 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: It was written by hand. I haven't seen code generation actually happen during a local build. Does it require a specific task to be run (other than build)? Just running build just makes it fail if the .NET equivalents are not present. -- 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