commit | ee87e643796b3373449601866b2b4c21eb703880 | [log] [tgz] |
---|---|---|
author | Rohan Agrawal <rohan.agrawal01@infosys.com> | Tue Apr 14 10:22:18 2020 +0000 |
committer | Rohan Agrawal <rohan.agrawal01@infosys.com> | Mon Apr 20 14:52:25 2020 +0000 |
tree | c8aa239d42b10d265c47645e88062bab448ce56b | |
parent | 472a5c94c061e3f1a07b032c2c0907477175d9a6 [diff] [blame] |
[VOL-2738]Enable configuration of ectd v3 client options Change-Id: I75541525b3fd929adf6325f743def45c77e8930a
diff --git a/pkg/db/backend.go b/pkg/db/backend.go index 42574d0..55fda64 100644 --- a/pkg/db/backend.go +++ b/pkg/db/backend.go
@@ -82,7 +82,7 @@ case "consul": return kvstore.NewConsulClient(address, timeout) case "etcd": - return kvstore.NewEtcdClient(address, timeout) + return kvstore.NewEtcdClient(address, timeout, log.WarnLevel) } return nil, errors.New("unsupported-kv-store") }