Fix auth_uri deprecation

[1] deprecated the auth_uri parameter for magnum::keystone::authtoken,
however it silently ignored the deprecated value and never used
variable $www_authenticate_uri_real. This commit fixes that.

[1] - https://review.openstack.org/558435

Change-Id: Icdaa70469c7e6d2c9d0624305cb54ed55c54be5d
This commit is contained in:
Javier Pena 2018-11-08 11:38:05 +01:00
parent 930f70f3f5
commit c115c31c75
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ class magnum::keystone::authtoken(
password => $password,
project_name => $project_name,
auth_url => $auth_url,
www_authenticate_uri => $www_authenticate_uri,
www_authenticate_uri => $www_authenticate_uri_real,
auth_version => $auth_version,
auth_type => $auth_type,
auth_section => $auth_section,