summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilien Macchi <emilien@redhat.com>2016-05-29 21:56:23 -0400
committerDmitry Tantsur <divius.inside@gmail.com>2016-05-31 11:33:55 +0000
commit3ff49f1d10f7acba33e00927e6c5180d3cb9a3be (patch)
treef5768ba577340e35929e07f847214bfc09969fb5
parentf4d081ea1565dd31718b75344e20ad78a5355e77 (diff)
downloadironic-3ff49f1d10f7acba33e00927e6c5180d3cb9a3be.tar.gz
tempest: start using get_configured_admin_credentials
Tempest removed get_configured_credentials in [1]. This patch aims to update the way we get admin credentials in Tempest client code. [1] https://github.com/openstack/tempest/commit/bc0a7a6d8022c7240f5f1f80c0c93b43e9037ad4 Change-Id: Ic97c011f8beec8df4253949285794be21b10f7cf (cherry picked from commit b8f227e62e7aac87266cae53093ccb3e68bc6d32)
-rw-r--r--ironic_tempest_plugin/clients.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic_tempest_plugin/clients.py b/ironic_tempest_plugin/clients.py
index 70ce1340a..3a098eecd 100644
--- a/ironic_tempest_plugin/clients.py
+++ b/ironic_tempest_plugin/clients.py
@@ -22,7 +22,7 @@ from ironic_tempest_plugin.services.baremetal.v1.json.baremetal_client import \
CONF = config.CONF
-ADMIN_CREDS = common_creds.get_configured_credentials('identity_admin')
+ADMIN_CREDS = common_creds.get_configured_admin_credentials()
class Manager(clients.Manager):