Skip to content

Commit 4b0d85b

Browse files
committed
Fix Openstack authentication
Signed-off-by: Andrej Podhradsky <apodhrad@redhat.com>
1 parent 4db24f1 commit 4b0d85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrapanapi/systems/openstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ def session(self):
632632
password=self.password, project_name=self.tenant)
633633
if self.keystone_version == 3:
634634
auth_kwargs.update(dict(user_domain_id=self.domain_id,
635-
project_domain_name=self.domain_id))
635+
project_domain_id=self.domain_id))
636636
pass_auth = Password(**auth_kwargs)
637637
self._session = Session(auth=pass_auth, verify=False)
638638
return self._session

0 commit comments

Comments
 (0)