From c774d3ff981c4c51266d49feefbfc38491ad57ea Mon Sep 17 00:00:00 2001 From: Ivan Hrasko Date: Thu, 21 Apr 2022 16:25:37 +0200 Subject: [PATCH] Enable tell-based protocol by default in DTO We have switched to tell-based protocol by default in datastore.cfg configuration. Reflect that change in DTO DatastoreContext as well. JIRA: CONTROLLER-2040 Change-Id: I2ed6c287fe7a39415afe49cb45fd485b64208e03 Signed-off-by: Ivan Hrasko --- .../controller/cluster/datastore/DatastoreContext.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/DatastoreContext.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DatastoreContext.java index 26a80d78f8..0851278bd7 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DatastoreContext.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DatastoreContext.java @@ -96,7 +96,7 @@ public class DatastoreContext implements ClientActorConfig { private int shardBatchedModificationCount = DEFAULT_SHARD_BATCHED_MODIFICATION_COUNT; private boolean writeOnlyTransactionOptimizationsEnabled = true; private long shardCommitQueueExpiryTimeoutInMillis = DEFAULT_SHARD_COMMIT_QUEUE_EXPIRY_TIMEOUT_IN_MS; - private boolean useTellBasedProtocol = false; + private boolean useTellBasedProtocol = true; private boolean transactionDebugContextEnabled = false; private String shardManagerPersistenceId; private int maximumMessageSliceSize = DEFAULT_MAX_MESSAGE_SLICE_SIZE; -- 2.36.6