Merge "Make the service_type more consistent"

This commit is contained in:
Jenkins 2014-07-03 05:46:05 +00:00 committed by Gerrit Code Review
commit f36ade4009
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ function create_mistral_accounts() {
if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
MISTRAL_SERVICE=$(openstack service create \
mistral \
--type=workflow_service \
--type=workflow \
--description="Workflow Service" \
| grep " id " | get_field 2)
openstack endpoint create \

View File

@ -32,7 +32,7 @@ class MistralClient(rest_client.RestClient):
def __init__(self, auth_provider):
super(MistralClient, self).__init__(auth_provider)
self.service = 'workflow_service'
self.service = 'workflow'
self.endpoint_url = 'publicURL'
def get_list_obj(self, name):