Skip to content

Commit

Permalink
Backport the most critical fix from MID-5920
Browse files Browse the repository at this point in the history
"Actions executed" counters were increased without any reason. This is
now fixed.

However, other fixes from ddccc84 cannot
be backported right now. They deal with multi-threaded LiveSync and their
incorporation would mean bringing more new code into 4.0.x.
  • Loading branch information
mederly committed Mar 19, 2020
1 parent 9e7b425 commit 3c44fd4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public static void addTo(List<ObjectActionsExecutedEntryType> sumEntries, List<O
if (matchingEntry != null) {
addToEntry(matchingEntry, entry);
} else {
sumEntries.add(entry);
sumEntries.add(entry.clone());
}
}
}
Expand Down

0 comments on commit 3c44fd4

Please sign in to comment.