Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread Stephen Masters
It depends on what kind of rule it is. If it's a 'technical' (DRL) rule, then you just add "no-loop" after the rule name. If it's a web based decision table, then it's on the "attributes" tab for that table. As Rich mentioned, it's much easier for us to help if you post the rule/code. Steve

Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread rjr201
Please post your code so we can see what you are trying to do. It is very difficult to help you if we can't see what you are doing. -- View this message in context: http://drools.46999.n3.nabble.com/Guvnor-test-scenario-executes-10-times-tp4025816p4025822.html Sent from the Drools: User fo

Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread Smurfs
I am very new to Guvnor.So, Can you please let me know where i need to add noloop -- View this message in context: http://drools.46999.n3.nabble.com/Guvnor-test-scenario-executes-10-times-tp4025816p4025821.html Sent from the Drools: User forum mailing list archive at Nabble.com. ___

Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread rjr201
Could you post your rule and the code you are using to run it? -- View this message in context: http://drools.46999.n3.nabble.com/Guvnor-test-scenario-executes-10-times-tp4025816p4025820.html Sent from the Drools: User forum mailing list archive at Nabble.com. __

Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread Smurfs
In this https://issues.jboss.org/browse/GUVNOR-1974, they ask to change the preferences.properties. but i could not find that file. can you please help me on that -- View this message in context: http://drools.46999.n3.nabble.com/Guvnor-test-scenario-executes-10-times-tp4025816p4025817.html

Re: [rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread Stephen Masters
The usual reason would be that you have a rule which is updating a fact on which it has a constraint. After each update it is therefore re-evaluated. In which case, you just need to add "no-loop" to it. Steve On 5 Sep 2013, at 10:47, Smurfs wrote: > Hi > I am working on guvnor in jboss. >

[rules-users] Guvnor: test scenario executes 100000 times

2013-09-05 Thread Smurfs
Hi I am working on guvnor in jboss. I have created a simple test scenario to test a rule of quantity greater than 5. When i run the scenario, it shows the message as "maximum number of rule firings (10) was reached. it is likely that there is a infinite loop". I am getting out of memory becau