fixing a missed rename

Change-Id: I7c49d1551fe5375619eb238b5f20957ec76f6708
This commit is contained in:
adriant 2016-02-17 12:33:19 +13:00
parent b5432731b0
commit 853cc9958e
2 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,7 @@ def get_keystoneclient():
username=settings.KEYSTONE['username'],
password=settings.KEYSTONE['password'],
project_name=settings.KEYSTONE['project_name'],
auth_url=settings.KEYSTONE['auth_url_v3'],
auth_url=settings.KEYSTONE['auth_url'],
region_name=settings.DEFAULT_REGION
)
return auth

View File

@ -63,8 +63,7 @@ KEYSTONE = {
'username': 'admin',
'password': 'openstack',
'project_name': 'admin',
'auth_url': "http://localhost:5000/v2.0",
'auth_url_v3': "http://localhost:5000/v3"
'auth_url': "http://localhost:5000/v3"
}
DEFAULT_REGION = 'RegionOne'