From 5a824a836a00ff21a855d7339a2fa9b64678db52 Mon Sep 17 00:00:00 2001 From: Tomas Cere Date: Tue, 3 Nov 2020 12:38:04 +0100 Subject: [PATCH] Make sure to clear candidate from memory The candidate needs to be cleared even when processing replicated candidate(ie on a follower) as there is no need to keep it deserialized in memory JIRA: CONTROLLER-1928 Change-Id: I1403dbe27def5e0040a8d9f145a92ac06aae9d1e Signed-off-by: Tomas Cere --- .../controller/cluster/datastore/ShardDataTree.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java index d4dabe5e85..c316fdfb9e 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardDataTree.java @@ -389,7 +389,7 @@ public class ShardDataTree extends ShardDataTreeTransactionParent { private void applyReplicatedCandidate(final CommitTransactionPayload payload) throws DataValidationFailedException, IOException { - final Entry entry = payload.getCandidate(); + final Entry entry = payload.acquireCandidate(); final TransactionIdentifier identifier = entry.getKey(); LOG.debug("{}: Applying foreign transaction {}", logContext, identifier); -- 2.36.6