]
Mario Fusco resolved JBRULES-3650.
----------------------------------
Fix Version/s: 5.5.0.CR1
Resolution: Done
wrong behaviour in InsertElementsCommand
----------------------------------------
Key: JBRULES-3650
URL:
https://issues.jboss.org/browse/JBRULES-3650
Project: Drools
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: drools-core (expert)
Affects Versions: 5.4.0.Final
Reporter: Matteo Cerina
Assignee: Mario Fusco
Fix For: 5.5.0.CR1
Whether or not an "entryPoint" is specified, the objects are added to the base
ksession element.
I think the error is in a single point of the code of
org.drools.command.runtime.rule.InsertElementsCommand, in the method execute()
As for now, the code looks like:
{{for ( Object object : objects ) {}}
{{handles.add( *ksession*.insert( object ) );}}
{{}}}
Simply replace "ksession" with "wmep", to have it look like:
{{for ( Object object : objects ) {}}
{{handles.add( *wmep*.insert( object ) );}}
{{}}}
Sorry that i can't send you a pull request :)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: