Skip to content

Commit 947d746

Browse files
committed
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
1 parent 434982c commit 947d746

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/keystone

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ function configure_keystone {
229229
iniset $KEYSTONE_CONF ec2 driver "keystone.contrib.ec2.backends.sql.Ec2"
230230

231231
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
233233
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
235235
else
236-
iniset $KEYSTONE_CONF token driver keystone.token.backends.kvs.Token
236+
iniset $KEYSTONE_CONF token driver keystone.token.persistence.backends.kvs.Token
237237
fi
238238

239239
if [[ "$KEYSTONE_CATALOG_BACKEND" = "sql" ]]; then

0 commit comments

Comments
 (0)