sk0x50 commented on code in PR #5286: URL: https://github.com/apache/ignite-3/pull/5286#discussion_r1969938350
########## modules/core/src/main/java/org/apache/ignite/internal/lang/IgniteInternalException.java: ########## @@ -256,7 +256,7 @@ public int code() { * @return Full error code in a human-readable format. */ public String codeAsString() { - return errorPrefix + "-" + groupName() + '-' + errorCode(); + return errorPrefix + "-" + groupName() + '-' + Short.toUnsignedInt(errorCode()); Review Comment: I think we need to update the `IgniteInternalCheckedException` in the same way. -- 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