From 60b3d3e1536577d681b2a3e15a7d4996435da997 Mon Sep 17 00:00:00 2001 From: iamdanfox Date: Mon, 1 Jun 2020 15:31:40 +0100 Subject: [PATCH] Enable dialogue clients by default (#4815) * Enable dialogue by default * Add generated changelog entries --- .../com/palantir/atlasdb/config/RemotingClientConfig.java | 2 +- changelog/@unreleased/pr-4815.v2.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 changelog/@unreleased/pr-4815.v2.yml diff --git a/atlasdb-remoting-api/src/main/java/com/palantir/atlasdb/config/RemotingClientConfig.java b/atlasdb-remoting-api/src/main/java/com/palantir/atlasdb/config/RemotingClientConfig.java index 2c7e492dd13..f529f8b9967 100644 --- a/atlasdb-remoting-api/src/main/java/com/palantir/atlasdb/config/RemotingClientConfig.java +++ b/atlasdb-remoting-api/src/main/java/com/palantir/atlasdb/config/RemotingClientConfig.java @@ -35,6 +35,6 @@ public interface RemotingClientConfig { @Value.Default default boolean enableDialogue() { - return false; + return true; } } diff --git a/changelog/@unreleased/pr-4815.v2.yml b/changelog/@unreleased/pr-4815.v2.yml new file mode 100644 index 00000000000..dde9fa6d2d0 --- /dev/null +++ b/changelog/@unreleased/pr-4815.v2.yml @@ -0,0 +1,6 @@ +type: feature +feature: + description: 'Atlasdb will now use dialogue clients by default. You can still opt-out + of this by setting `atlas-runtime: { remotingClient: { enableDialogue: false }}`' + links: + - https://github.com/palantir/atlasdb/pull/4815