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
In my process (7.19) I use the following expression as a condition on a sequence
${kanal == 'CI' || kanal == 'PCS'}
This is converted into
=kanal = 'CI' or kanal = 'PCS'
which is wrong, because FEEL doesn't support single quotes.
It should be
=kanal = "CI" or kanal = "PCS"
My local bugfix worked fine for me. I added this generous mapping rule to the ExpressionTransformer.java
.replaceAll("'", """);
and this to the ExpressionTransformerTest.java
expression("${x == '1'}").isMappedTo("=x = "1""),
see above
x
y
Tomcat
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
In my process (7.19) I use the following expression as a condition on a sequence
This is converted into
which is wrong, because FEEL doesn't support single quotes.
It should be
My local bugfix worked fine for me.
I added this generous mapping rule to the ExpressionTransformer.java
and this to the ExpressionTransformerTest.java
Steps to reproduce
see above
Expected Behaviour
see above
Library version
x
Camunda version
y
Camunda Distribution
Tomcat
Other Camunda distribution
No response
The text was updated successfully, but these errors were encountered: