Browse code

Use correct class path for token persistence backend

Keystone has moved over to using a new location for the token
persistence backends (drivers). The old values will continue to
work, but this will limit the deprecation warnings for an out
of the box devstack install.

Change-Id: I7c437788c8aee0106fa7f3c37617fbd1220291ef
bp: non-persistent-tokens

Morgan Fainberg authored on 2014/08/30 05:26:31
Showing 1 changed files
... ...
@@ -229,11 +229,11 @@ function configure_keystone {
229 229
     iniset $KEYSTONE_CONF ec2 driver "keystone.contrib.ec2.backends.sql.Ec2"
230 230
 
231 231
     if [[ "$KEYSTONE_TOKEN_BACKEND" = "sql" ]]; then
232
-        iniset $KEYSTONE_CONF token driver keystone.token.backends.sql.Token
232
+        iniset $KEYSTONE_CONF token driver keystone.token.persistence.backends.sql.Token
233 233
     elif [[ "$KEYSTONE_TOKEN_BACKEND" = "memcache" ]]; then
234
-        iniset $KEYSTONE_CONF token driver keystone.token.backends.memcache.Token
234
+        iniset $KEYSTONE_CONF token driver keystone.token.persistence.backends.memcache.Token
235 235
     else
236
-        iniset $KEYSTONE_CONF token driver keystone.token.backends.kvs.Token
236
+        iniset $KEYSTONE_CONF token driver keystone.token.persistence.backends.kvs.Token
237 237
     fi
238 238
 
239 239
     if [[ "$KEYSTONE_CATALOG_BACKEND" = "sql" ]]; then