Moving config option to match keystone module

This commit is contained in:
DamianZaremba 2012-12-31 17:48:59 +00:00
parent 201714399d
commit 2227b0e481

View File

@ -15,7 +15,7 @@ def get_auth_url():
Try and get the url from the config, else return localhost
'''
try:
return __opts__['auth.keystone.url']
return __opts__['keystone.auth_url']
except KeyError:
return 'http://localhost:35357/v2.0'