tkobayas commented on issue #6711: URL: https://github.com/apache/incubator-kie-drools/issues/6711#issuecomment-4542261394
Thank you for reporting. I'm working on a fix https://github.com/apache/incubator-kie-drools/pull/6730 In the meantime, a workaround would be: A) Disable MVEL Jitting: Set this system property -> `System.setProperty("drools.jittingThreshold", "-1");` or B) Use executable-model: change from `KieBuilder kb = ks.newKieBuilder(kfs).buildAll();` to `KieBuilder kb = ks.newKieBuilder(kfs).buildAll(ExecutableModelProject.class);` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
