Updating get_auth_token to use keystonemiddleware

Now using keystonemiddleware.auth_token rather than
keystoneclient.middleware.auth_token.  This change
fixes get_auth_token.py.

Change-Id: Ia00c065d7684005277e82ab12db9ae2c550b5a1e
Closes-Bug: #1550522
This commit is contained in:
Chad Roberts 2016-02-26 16:15:14 -05:00
parent 36ce53fce2
commit bbfe2fff5f
1 changed files with 4 additions and 4 deletions

View File

@ -38,10 +38,10 @@ cli_opts = [
]
CONF = cfg.CONF
CONF.import_opt('auth_uri', 'keystoneclient.middleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_user', 'keystoneclient.middleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_password', 'keystoneclient.middleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_tenant_name', 'keystoneclient.middleware.auth_token', group='keystone_authtoken')
CONF.import_opt('auth_uri', 'keystonemiddleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_user', 'keystonemiddleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_password', 'keystonemiddleware.auth_token', group='keystone_authtoken')
CONF.import_opt('admin_tenant_name', 'keystonemiddleware.auth_token', group='keystone_authtoken')
CONF.register_cli_opts(cli_opts)