Remove name opt from create/update opts#3017
Remove name opt from create/update opts#3017manji-0 wants to merge 1 commit intogophercloud:mainfrom
name opt from create/update opts#3017Conversation
There was a problem hiding this comment.
Thank you for submitting your first PR! Be sure that we will be looking at it but keep in mind
this sometimes takes a while.
Please let the maintainers know if your PR has not got enough attention after a few days.
If any doubt, please consult our PR tutorial.
602f291 to
8a16433
Compare
|
here is my recent devstack installation, the names are there: |
Different API. You want >>> import openstack
>>> conn = openstack.connect()
>>> conn.identity.get('/endpoints').json()['endpoints'][0].keys()
dict_keys(['id', 'interface', 'region_id', 'service_id', 'url', 'enabled', 'region', 'links']) |
stephenfin
left a comment
There was a problem hiding this comment.
Assuming CI and @kayrus are happy.
hm, I executed |
Yeah, that's a meta command that takes the output of the services API and combined it with the output of the endpoint API. If you search higher in the debug output you'll likely see the call to the latter. |
Fixes #3016
Remove
nameopt from create/update opts because the property is not in endpoint schema (1).Also,
nameis not in keystone api v3 document (2).Links to the line numbers/files in the OpenStack source code that support the code in this PR: