@role( event )
@timestamp( dateProperty )
end
rule "Rule0"
no-loop true
salience 10
when
$someObj : SomeObj( )
then
System.out.println($someObj.getId());
end
This is the only rule I have, and it is causing infinite execution loop. Now, I am aware that I don't have any constraints in the LHS and it would be very easy for Drools to get into infinite loop, but, I do not $modify the facts at RHS, nor do I insert any new facts. In a same way, $someObj : SomeObj( someProperty > 10 ) is entering the same infinite loop. So basically any matched fact causes an infinite loop. How can I overcome this? Thanks!