From b8946b70497d2f231b9bd50c3df42b4ac1839805 Mon Sep 17 00:00:00 2001 From: Boris Bobrov Date: Fri, 5 May 2017 14:22:41 +0300 Subject: [PATCH] Change service type to workflowv2 workflowv2 is currently used type for Mistral. Old service type did not really cause any issues, because if not specified, the default value from --os-mistral-service-type is used, which is correct. Anyway, it is worth fixing so that it doesn't cause confusion. Change-Id: I2c4f33d38d9ce487bde6b99455bfdb42f4f21f85 Closes-Bug: 1688219 --- 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 e7f7fb12..2d6f98f9 100644 --- a/mistralclient/auth/keystone.py +++ b/mistralclient/auth/keystone.py @@ -34,7 +34,7 @@ class KeystoneAuthHandler(auth.AuthHandler): session = session mistral_url = req.get('mistral_url') endpoint_type = req.get('endpoint_type', 'publicURL') - service_type = req.get('service_type', 'workflow2') + service_type = req.get('service_type', 'workflowv2') auth_url = req.get('auth_url') username = req.get('username')