From 9084866015e73140cf022b3a2cc6eb5efd93cc10 Mon Sep 17 00:00:00 2001 From: Kelly McDonald Date: Wed, 31 Mar 2021 10:17:08 -0400 Subject: [PATCH] Update error message - it may be that we should spend a bit and see if we can make the Box error --- crc/services/error_service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crc/services/error_service.py b/crc/services/error_service.py index bbdd87fb..2d66f0eb 100644 --- a/crc/services/error_service.py +++ b/crc/services/error_service.py @@ -17,7 +17,8 @@ generic_message = """Workflow validation failed. For more information about the known_errors = {'Error is Non-default exclusive outgoing sequence flow without condition': {'hint': 'Add a Condition Type to your gateway path.'}, - 'Could not set task title on task (\w+) with \'(.*)\' property because \\1: Error evaluating expression \'(.*)\', "\'Box\' object has no attribute \'\\2\'"$': + 'Could not set task title on task (\w+) with \'(.*)\' property because \\1: Error evaluating ' + 'expression \'(.*)\', $': {'hint': 'You are overriding the title for task `{task_id}`, using the `{property}` extension, and it is causing an error. Look under the extensions tab for the task, and check the value you are setting for the property.', 'groups': {'task_id': 0, 'property': 1}}}