We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
task output with a value container "not" is wrongly converted to "not" expression
create a Task whichn set a output string containing not:
<bpmn:task id="Activity_1j6t5uw" name="set var2 str"> <bpmn:extensionElements> <camunda:inputOutput> <camunda:outputParameter name="var2">${ "result is not ok" }</camunda:outputParameter> </camunda:inputOutput> </bpmn:extensionElements> <bpmn:incoming>Flow_1yiy9op</bpmn:incoming> <bpmn:outgoing>Flow_1x9vzzk</bpmn:outgoing> </bpmn:task>
The convert script wrongly converted the string:
<bpmn:extensionElements> <conversion:message severity="REVIEW">Element 'outputParameter' was transformed. Parameter 'var2': Please review transformed expression: '${ "result is not ok" }' -> '="result is not(ok")'.</conversion:message> <zeebe:ioMapping> <zeebe:output source="="result is not(ok")" target="var2"/> </zeebe:ioMapping> </bpmn:extensionElements> <bpmn:incoming>Flow_1yiy9op</bpmn:incoming> <bpmn:outgoing>Flow_1x9vzzk</bpmn:outgoing> </bpmn:task>
<zeebe:output source="="result is not ok"" target="var2"/>
0.9.0
7.21
8.5
The text was updated successfully, but these errors were encountered:
@nesies as the expression transformer works using regex, this can actually happen.
Therefore, the converter will always display you with a TASK to review the converted expression.
If you find room for improvement, please feel free to contribute
Sorry, something went wrong.
No branches or pull requests
Describe the bug
task output with a value container "not" is wrongly converted to "not" expression
Steps to reproduce
create a Task whichn set a output string containing not:
The convert script wrongly converted the string:
Expected Behaviour
Library version
0.9.0
Camunda Platform 7 version
7.21
Camunda Platform 8 version
8.5
The text was updated successfully, but these errors were encountered: