Replace os-client-config to openstacksdk
Since now os-client-config has been superceded by openstacksdk[1]. So need to replace the os-client-config in zaqarclient to slove the issue that 'No module named os_client_config'. [1]:https://docs.openstack.org/os-client-config/latest/ Change-Id: I19bee5f276dcdd9a885fd99b6b656647e28ba139
This commit is contained in:
parent
e8007a68e4
commit
792a6d0ff1
@ -16,7 +16,7 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
import fixtures
|
import fixtures
|
||||||
import os_client_config
|
import openstack.config
|
||||||
from six.moves import urllib_parse
|
from six.moves import urllib_parse
|
||||||
import testtools
|
import testtools
|
||||||
|
|
||||||
@ -65,7 +65,7 @@ class TestBase(testtools.TestCase):
|
|||||||
has admin privs. This function will default to getting the
|
has admin privs. This function will default to getting the
|
||||||
devstack-admin cloud as that is the current expected behavior.
|
devstack-admin cloud as that is the current expected behavior.
|
||||||
"""
|
"""
|
||||||
os_cfg = os_client_config.OpenStackConfig()
|
os_cfg = openstack.config.OpenStackConfig()
|
||||||
try:
|
try:
|
||||||
found = os_cfg.get_one_cloud(cloud=cloud)
|
found = os_cfg.get_one_cloud(cloud=cloud)
|
||||||
except Exception:
|
except Exception:
|
||||||
|
Loading…
Reference in New Issue
Block a user