We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 63cb97b + 40c70b0 commit 63efe7aCopy full SHA for 63efe7a
caso/extract/base.py
@@ -96,7 +96,7 @@ def _get_keystone_client(self, tenant):
96
def _get_keystone_users(self, ks_client):
97
tenant_id = ks_client.tenant_id
98
users = ks_client.users.list(tenant_id=tenant_id)
99
- return {u.id: u.username for u in users}
+ return {u.id: u.name for u in users}
100
101
def vm_status(self, status):
102
return openstack_vm_statuses.get(status.lower(), 'unknown')
0 commit comments