mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 00:55:55 +00:00
Merge pull request #378 from kuba--/off-ae/340
Turn anti-entropy off by default
This commit is contained in:
commit
fc9e75edc2
2 changed files with 2 additions and 2 deletions
|
|
@ -326,7 +326,7 @@ func NewServer(opts ...ServerOption) (*Server, error) {
|
|||
|
||||
gcNotifier: NopGCNotifier,
|
||||
|
||||
antiEntropyInterval: time.Minute * 10,
|
||||
antiEntropyInterval: 0,
|
||||
metricInterval: 0,
|
||||
diagnosticInterval: 0,
|
||||
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ func NewConfig() *Config {
|
|||
c.Gossip.ToTheDeadTime = toml.Duration(30 * time.Second)
|
||||
|
||||
// AntiEntropy config.
|
||||
c.AntiEntropy.Interval = toml.Duration(10 * time.Minute)
|
||||
c.AntiEntropy.Interval = toml.Duration(0)
|
||||
|
||||
// Metric config.
|
||||
c.Metric.Service = "none"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue