Comment 6 for bug 1650026

Revision history for this message
Rui Chen (kiwik-chenrui) wrote :

I found not all networking commands broken, for example: openstack network set --help, it's ok, but openstack network list --help failed.

Exception will be raised from self.app.client_manager.is_network_endpoint_enabled() method, the method have to get service catalog by a whole authentication, the key point is here[1], auth_type and config["auth"] are mismatch, "username" and other auth info are passed into token_endpoint.Token to initial.

[1]: https://github.com/openstack/python-openstackclient/blob/master/openstackclient/common/client_config.py#L196-L196