From e70fad41912ccfcb38ac5d445e3ef55edc1568f9 Mon Sep 17 00:00:00 2001 From: Flavio Percoco Date: Tue, 28 Apr 2015 10:37:26 +0200 Subject: [PATCH] Update dataplane section name We recently split the data plane from the control plane. This patch updates those sections in devstack. Change-Id: Idfa1325cf5732b408cb717e8b6162b18e1618985 Depends-On: If5c91ebe136017cea2eeecf62a580d050e49617d --- devstack/plugin.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index b23e6a504..6e18013b9 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -123,11 +123,13 @@ function configure_zaqar { if [ "$ZAQAR_BACKEND" = 'mongodb' ] ; then iniset $ZAQAR_CONF drivers storage mongodb - iniset $ZAQAR_CONF 'drivers:storage:mongodb' uri mongodb://localhost:27017/zaqar + iniset $ZAQAR_CONF 'drivers:message_store:mongodb' uri mongodb://localhost:27017/zaqar + iniset $ZAQAR_CONF 'drivers:message_store:mongodb' database zaqar configure_mongodb elif [ "$ZAQAR_BACKEND" = 'redis' ] ; then iniset $ZAQAR_CONF drivers storage redis - iniset $ZAQAR_CONF 'drivers:storage:redis' uri redis://localhost:6379 + iniset $ZAQAR_CONF 'drivers:message_store:redis' uri redis://localhost:6379 + iniset $ZAQAR_CONF 'drivers:message_store:redis' database zaqar configure_redis fi