Skip to content

Commit

Permalink
HPCC-31895 Fix deserialization and merging of nested stats
Browse files Browse the repository at this point in the history
Signed-off-by: Shamser Ahmed <[email protected]>
  • Loading branch information
shamser committed Jun 3, 2024
1 parent 55868e4 commit f94a257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/jlib/jstats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2871,7 +2871,7 @@ void CRuntimeStatisticCollection::deserialize(MemoryBuffer& in)
in.read(hasNested);
if (hasNested)
{
ensureNested().deserializeMerge(in);
ensureNested().deserialize(in);
}
}

Expand All @@ -2892,7 +2892,7 @@ void CRuntimeStatisticCollection::deserializeMerge(MemoryBuffer& in)
in.read(hasNested);
if (hasNested)
{
ensureNested().deserialize(in);
ensureNested().deserializeMerge(in);
}
}

Expand Down

0 comments on commit f94a257

Please sign in to comment.