summaryrefslogtreecommitdiff
path: root/plugins/kv/memory/config.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-21 13:25:36 +0300
committerValery Piashchynski <[email protected]>2021-01-21 13:25:36 +0300
commit7da6c78449776e1f3c6716250bca0b712a0423a4 (patch)
treef3512de66aca2bba408485a0ea2fc936c0e4fb9b /plugins/kv/memory/config.go
parent0ff05b2732b4fd0783f959c94c54d7e39169f979 (diff)
Uniform all configs
Add debug server Check nil's for all plugin intialization
Diffstat (limited to 'plugins/kv/memory/config.go')
-rw-r--r--plugins/kv/memory/config.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/kv/memory/config.go b/plugins/kv/memory/config.go
index 0816f734..e51d09c5 100644
--- a/plugins/kv/memory/config.go
+++ b/plugins/kv/memory/config.go
@@ -2,14 +2,13 @@ package memory
// Config is default config for the in-memory driver
type Config struct {
- // Enabled or disabled (true or false)
- Enabled bool
// Interval for the check
Interval int
}
// InitDefaults by default driver is turned off
func (c *Config) InitDefaults() {
- c.Enabled = false
- c.Interval = 60 // seconds
+ if c.Interval == 0 {
+ c.Interval = 60 // seconds
+ }
}