From c060dd7a1e9d17672e6cf96e07ee13762070b9ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramboman=E2=80=9D?= Date: Thu, 28 Nov 2019 18:44:15 +0800 Subject: [PATCH] fix the mistralclient set endpoint_type invaild The reason is that mistralclient transfer error parameter for keystoneauth. Change-Id: I380d8fda49fed810a7bbda41c32910df8368512c Closes-Bug: #1854339 --- mistralclient/auth/keystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mistralclient/auth/keystone.py b/mistralclient/auth/keystone.py index e8c4445a..cf9ae2fe 100644 --- a/mistralclient/auth/keystone.py +++ b/mistralclient/auth/keystone.py @@ -171,7 +171,7 @@ class KeystoneAuthHandler(mistral_auth.AuthHandler): try: mistral_url = session.get_endpoint( service_type=service_type, - endpoint_type=endpoint_type, + interface=endpoint_type, region_name=region_name ) except Exception: