]
RH Bugzilla Integration commented on DROOLS-501:
------------------------------------------------
Mario Fusco <mfusco(a)redhat.com> changed the Status of [bug
Propagation context is not set correctly when nodes are shared
--------------------------------------------------------------
Key: DROOLS-501
URL:
https://issues.jboss.org/browse/DROOLS-501
Project: Drools
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 6.1.0.Beta4
Reporter: Davide Sottara
Assignee: Mario Fusco
Priority: Critical
Fix For: 6.1.0.CR1
The following rules
{code}
package org.drools.compiler.loop
rule "Rule 1"
ruleflow-group "Start"
no-loop
when
$thing1 : String()
$thing2 : Integer()
then
System.out.println( 'At 1' );
update( $thing2 );
end
rule "Rule 2"
ruleflow-group "End"
no-loop
when
$thing1 : String()
$thing2 : Integer()
then
System.out.println( 'At 2' );
update( $thing2 );
end
{code}
cause an endless loop even if controlled by a jBPM process with two rule tasks