diff --git a/mistral/services/actions.py b/mistral/services/actions.py index 37d787742..e9f1574d8 100644 --- a/mistral/services/actions.py +++ b/mistral/services/actions.py @@ -36,8 +36,9 @@ def update_actions(definition, scope='private', identifier=None): if identifier and len(actions) > 1: raise exc.InputException( - "More than one actions are not supported for update with UUID " - "provided." + "More than one actions are not supported for " + "update with identifier. [identifier: %s]" % + identifier ) db_actions = [] diff --git a/mistral/services/workflows.py b/mistral/services/workflows.py index 233a90d03..a70cef97d 100644 --- a/mistral/services/workflows.py +++ b/mistral/services/workflows.py @@ -86,8 +86,9 @@ def update_workflows(definition, scope='private', identifier=None): if identifier and len(wfs) > 1: raise exc.InputException( - "More than one workflows are not supported for update with UUID " - "provided." + "More than one workflows are not supported for " + "update with identifier. [identifier: %s]" % + identifier ) db_wfs = []