diff options
author | Valery Piashchynski <[email protected]> | 2021-04-22 14:41:50 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-04-22 14:41:50 +0300 |
commit | abf606afd6fd9fbb0fd374ab5da41a8ee8d5a15d (patch) | |
tree | b0cfdeb5c478463d853b8a7409e88cfa7219c3fa /plugins/kv/storage.go | |
parent | e4d65a41ec90747a387cfe769f743327959f7105 (diff) |
- Implement tests for the KV
- Implement Storage interface for the boltdb,memory,memcached drivers
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/kv/storage.go')
-rw-r--r-- | plugins/kv/storage.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/kv/storage.go b/plugins/kv/storage.go index 81ca2d91..b779665b 100644 --- a/plugins/kv/storage.go +++ b/plugins/kv/storage.go @@ -105,7 +105,6 @@ func (p *Plugin) Serve() chan error { // save the storage p.storages[k] = storage - case boltdb: if _, ok := p.drivers[boltdb]; !ok { continue |