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 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
MISTRAL_SERVICE=$(openstack service create \ MISTRAL_SERVICE=$(openstack service create \
mistral \ mistral \
--type=workflow_service \ --type=workflow \
--description="Workflow Service" \ --description="Workflow Service" \
| grep " id " | get_field 2) | grep " id " | get_field 2)
openstack endpoint create \ openstack endpoint create \

View File

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