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
This commit is contained in:
Boris Bobrov 2017-05-05 14:22:41 +03:00
parent 0f97a492eb
commit b8946b7049
1 changed files with 1 additions and 1 deletions

View File

@ -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')