Browse code

Merge "Fix marconi's storage setting for MongoDB"

Jenkins authored on 2014/03/07 06:03:24
Showing 1 changed files
... ...
@@ -105,7 +105,8 @@ function configure_marconi {
105 105
     iniset $MARCONI_CONF keystone_authtoken signing_dir $MARCONI_AUTH_CACHE_DIR
106 106
 
107 107
     if [[ "$MARCONI_BACKEND" = 'mongodb' ]]; then
108
-        iniset $MARCONI_CONF database connection mongodb://localhost:27017/marconi
108
+        iniset $MARCONI_CONF drivers storage mongodb
109
+        iniset $MARCONI_CONF 'drivers:storage:mongodb' uri mongodb://localhost:27017/marconi
109 110
         configure_mongodb
110 111
         cleanup_marconi
111 112
     fi