Update libkv dependency

This commit is contained in:
NicoMen
2017-11-17 17:22:03 +01:00
committed by Traefiker
parent cdab6b1796
commit 66e489addb
237 changed files with 62817 additions and 16116 deletions

View File

@@ -89,7 +89,7 @@ type DoCondition func() error
// Verify if a Key exists in the store
func KVExists(kv store.Store, key string) DoCondition {
return func() error {
_, err := kv.Exists(key)
_, err := kv.Exists(key, nil)
return err
}
}