From d9a2b8809b44b106893014483703acbd304df14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Fran=C3=A7oise?= Date: Mon, 30 May 2016 11:45:10 +0200 Subject: [PATCH] Updated tempest test creds retrieval mechanism Following https://review.openstack.org/#/c/263376/, I update the way Watcher tempest test retrieve the admin credentials. Change-Id: I9633752ff69a27edf8912227ea2fd24f358dec7e --- watcher_tempest_plugin/infra_optim_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher_tempest_plugin/infra_optim_clients.py b/watcher_tempest_plugin/infra_optim_clients.py index f508caf5b..edf20913b 100644 --- a/watcher_tempest_plugin/infra_optim_clients.py +++ b/watcher_tempest_plugin/infra_optim_clients.py @@ -38,5 +38,5 @@ class BaseManager(clients.Manager): class AdminManager(BaseManager): def __init__(self): super(AdminManager, self).__init__( - creds_factory.get_configured_credentials('identity_admin'), + creds_factory.get_configured_admin_credentials(), )