From 0c2c31bb0a4113c1b49b2ef26c93ab2ac677a3a3 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 7 Jan 2021 19:52:00 +0530 Subject: [PATCH] MM-31715: Flip ExperimentalGossip to be true by default (#16644) * MM-31715: Flip ExperimentalGossip to be true by default https://mattermost.atlassian.net/browse/MM-31715 ```release-notes The UseExperimentalGossip field under ClusterSettings is now true by default. This means that new installations will use the gossip protocol for cluster communication. There will be no changes to existing installations. ``` * update test config --- model/config.go | 2 +- tests/test-config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/model/config.go b/model/config.go index c6cd8803bd..8acd559c3e 100644 --- a/model/config.go +++ b/model/config.go @@ -848,7 +848,7 @@ func (s *ClusterSettings) SetDefaults() { } if s.UseExperimentalGossip == nil { - s.UseExperimentalGossip = NewBool(false) + s.UseExperimentalGossip = NewBool(true) } if s.EnableExperimentalGossipEncryption == nil { diff --git a/tests/test-config.json b/tests/test-config.json index b9d3e52dcf..01cb7a0ec7 100644 --- a/tests/test-config.json +++ b/tests/test-config.json @@ -320,7 +320,7 @@ "ClusterName": "", "OverrideHostname": "", "UseIpAddress": true, - "UseExperimentalGossip": false, + "UseExperimentalGossip": true, "ReadOnlyConfig": true, "GossipPort": 8074, "StreamingPort": 8075,