# Pastebin vPT5f4yc notmorgan@braavos:~/openstack/shade$ git diff diff --git a/shade/_tasks.py b/shade/_tasks.py index c350510..1b29b52 100644 --- a/shade/_tasks.py +++ b/shade/_tasks.py @@ -17,11 +17,6 @@ from shade import task_manager -class UserList(task_manager.Task): - def main(self, client): - return client.keystone_client.users.list() - - class UserCreate(task_manager.Task): def main(self, client): return client.keystone_client.users.create(**self.args) diff --git a/shade/openstackcloud.py b/shade/openstackcloud.py index 88e58d6..d89dc44 100644 --- a/shade/openstackcloud.py +++ b/shade/openstackcloud.py @@ -881,9 +881,12 @@ class OpenStackCloud( :raises: ``OpenStackCloudException``: if something goes wrong during the OpenStack API call. """ - with _utils.shade_exceptions("Failed to list users"): - users = self.manager.submit_task(_tasks.UserList()) - return _utils.normalize_users(users) + version = self.cloud_config.get_api_version('identity') + uri_parts = ['users'] + if version in ('3', ): + uri_parts.insert(0, 'v3') + rest_uri = '/'.join(uri_parts) + return _utils.normalize_users(self._identity_client.get(rest_uri)) def search_users(self, name_or_id=None, filters=None): """Search users. notmorgan@braavos:~/opens