Skip to content

Commit

Permalink
fix: 14230 Fixed incorrect deserialization of PlatformState (#14332)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Malygin <[email protected]>
  • Loading branch information
imalygin authored and mxtartaglia-sl committed Jul 23, 2024
1 parent fc84f50 commit 0e399fa
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ public void deserialize(final SerializableDataInputStream in, final int version)
private void skipUptimeData(final @NonNull SerializableDataInputStream in) throws IOException {
int numOfEntries = in.readInt();
for (int i = 0; i < numOfEntries; i++) {
// nodeId
in.readLong();
// lastEventRound
in.readLong();
// lastEventTime
Expand Down

0 comments on commit 0e399fa

Please sign in to comment.