diff options
| author | Zuul <zuul@review.opendev.org> | 2019-05-17 21:33:34 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2019-05-17 21:33:34 +0000 |
| commit | 8ee23fe917f52e84e66feb9f07cf4aa7f6717f06 (patch) | |
| tree | 27ad3d6a1824de009ede9136f2ac186bb4e04014 /openstackclient/identity | |
| parent | 6c481c2dae087be95e18f5e9cdce84206ed1295a (diff) | |
| parent | 04e03b2a1fe34046e2148d3c1d17b9053010c8af (diff) | |
| download | python-openstackclient-8ee23fe917f52e84e66feb9f07cf4aa7f6717f06.tar.gz | |
Merge "Fix bug in endpoint group deletion"
Diffstat (limited to 'openstackclient/identity')
| -rw-r--r-- | openstackclient/identity/v3/endpoint_group.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/identity/v3/endpoint_group.py b/openstackclient/identity/v3/endpoint_group.py index e254973b..66bd164d 100644 --- a/openstackclient/identity/v3/endpoint_group.py +++ b/openstackclient/identity/v3/endpoint_group.py @@ -204,11 +204,11 @@ class ListEndpointGroup(command.Lister): if endpointgroup: # List projects associated to the endpoint group - columns = ('ID', 'Name') + columns = ('ID', 'Name', 'Description') data = client.endpoint_filter.list_projects_for_endpoint_group( endpoint_group=endpointgroup.id) elif project: - columns = ('ID', 'Name') + columns = ('ID', 'Name', 'Description') data = client.endpoint_filter.list_endpoint_groups_for_project( project=project.id) else: @@ -251,7 +251,7 @@ class RemoveProjectFromEndpointGroup(command.Command): parsed_args.project, parsed_args.project_domain) - client.endpoint_filter.delete_endpoint_group_to_project( + client.endpoint_filter.delete_endpoint_group_from_project( endpoint_group=endpointgroup.id, project=project.id) |
