diff --git a/consul/config.go b/consul/config.go index 0e094f305b..9e6be91b23 100644 --- a/consul/config.go +++ b/consul/config.go @@ -350,6 +350,9 @@ func DefaultConfig() *Config { // Disable shutdown on removal conf.RaftConfig.ShutdownOnRemove = false + // Check every 5 seconds to see if there are enough new entries for a snapshot + conf.RaftConfig.SnapshotInterval = 5 * time.Second + return conf }