etcd: remove assertion when creating bucket and value with the same key

This commit removes an assertion which is not needed because with etcd
we can safely create keys and values with the same key since they are
stored under different keys in the DB. This saves us one unnecessary Get
on every Put.
This commit is contained in:
Andras Banki-Horvath
2021-06-16 16:56:38 +02:00
parent 11a44a94b1
commit 96caa6f242
6 changed files with 63 additions and 8 deletions

8
kvdb/debug.go Normal file
View File

@ -0,0 +1,8 @@
// +build dev
package kvdb
const (
// Switch on extra debug code.
etcdDebug = true
)