Closed mmonti closed 5 years ago
@mswiderski I just realized that the Kogito site mentions to report issues in the Jira platform. Should I move these two issues there for tracking?
@mmonti yes, please move it to jira so we can track it and include in upcoming release, thanks
moved to jira https://issues.jboss.org/browse/KOGITO-78
I have been playing around with https://github.com/kiegroup/kogito-examples/tree/master/drools-quarkus-example because we have a service that uses drools and we want to migrate to Kogito.
I found an issue when using Variables that seems to be happening only when I run a native build (
mvn clean package -Pnative
). The project compiles and I can run the executable just fine but when I call the endpoint I get the following error:The exact same code runs just fine when running on debug mode:
mvn clean package quarkus:dev
The way I am setting up the Variable is as follow:
This is how my decision table looks like:
I have an example to reproduce this issue here:
I am wondering if this is an issue with the current implementation or If I am missing something in my code.
Thanks. M.-