ibessonov commented on code in PR #6161: URL: https://github.com/apache/ignite-3/pull/6161#discussion_r2177320908
########## modules/network/src/main/java/org/apache/ignite/internal/network/direct/stream/DirectByteBufferStreamImplV1.java: ########## @@ -1189,7 +1236,11 @@ public long readFixedLong() { if (lastFinished) { int pos = buf.position(); - val = GridUnsafe.getLong(heapArr, baseOff + pos); + if (IS_BIG_ENDIAN) { Review Comment: Looks just like in all other places, should I comment on this one specifically? -- 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