96caa6f242
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.
9 lines
89 B
Go
9 lines
89 B
Go
// +build dev
|
|
|
|
package etcd
|
|
|
|
const (
|
|
// Switch on extra debug code.
|
|
etcdDebug = true
|
|
)
|