[VOL-5359] Add redis option as KVStore
Change-Id: I432a3deaa83b39bd4796d3ad1637c398e76474bd
Signed-off-by: Abhay Kumar <abhayk@radisys.com>
diff --git a/rw_core/config/config.go b/rw_core/config/config.go
index 6370550..7cb644d 100644
--- a/rw_core/config/config.go
+++ b/rw_core/config/config.go
@@ -24,7 +24,7 @@
// RW Core service default constants
const (
- EtcdStoreName = "etcd"
+ KVStoreName = "etcd"
)
// RWCoreFlags represents the set of configurations used by the read-write core service
@@ -101,7 +101,7 @@
fs.StringVar(&cf.KVStoreType,
"kv_store_type",
- EtcdStoreName,
+ KVStoreName,
"KV store type")
fs.DurationVar(&cf.KVStoreTimeout,