diff --git a/heat/common/heat_keystoneclient.py b/heat/common/heat_keystoneclient.py index d1ba906c6d..8683487904 100644 --- a/heat/common/heat_keystoneclient.py +++ b/heat/common/heat_keystoneclient.py @@ -127,9 +127,7 @@ class KeystoneClientV3(object): username=cfg.CONF.keystone_authtoken.admin_user, password=cfg.CONF.keystone_authtoken.admin_password, user_domain_id='default', - auth_url=self.v3_endpoint, - project_name=cfg.CONF.keystone_authtoken.admin_tenant_name, - project_domain_id='default') + auth_url=self.v3_endpoint) return self._admin_auth diff --git a/heat/tests/test_heatclient.py b/heat/tests/test_heatclient.py index e66b589e2f..fdea6916d1 100644 --- a/heat/tests/test_heatclient.py +++ b/heat/tests/test_heatclient.py @@ -81,8 +81,6 @@ class KeystoneClientTest(common.HeatTestCase): m = ks_auth_v3.Password(auth_url='http://server.test:5000/v3', password='verybadpass', user_domain_id='default', - project_name='service', - project_domain_id='default', username='heat') m.AndReturn(mock_ks_auth)