-
Bug
-
Resolution: Done
-
Major
-
7.73.0.Final
-
None
-
2022 Week 29-31 (from Jul 18)
-
2
-
NEW
-
NEW
-
---
-
---
Assuming the class VariousCasePropFact has property accessors like this
public class VariousCasePropFact { private String MyTarget; // upper + lower public String getMyTarget() { return MyTarget; } public void setMyTarget(String myTarget) { MyTarget = myTarget; } ... }
Rule:
rule R1 salience 100 when $f : VariousCasePropFact( value == "A" ) then results.add("R1") end rule R2 no-loop when $f : VariousCasePropFact( value == "A" ) then results.add("R2"); modify($f) { MyTarget = "123" }; end
The rules react differently between exec-model (doesn't react R1) and non-exec-model (reacts R1).
- is cloned by
-
RHDM-1945 unexpected rule fires after upgrading from 7.10.1 to 7.12.1 when capitalized property is updated in modify block
- Closed