cancel
Showing results for 
Search instead for 
Did you mean: 

While Loop

janeto
Champ in-the-making
Champ in-the-making
Hallo!
I have problem with the while loop. How can I fix the error.
1 REPLY 1

trademak
Star Contributor
Star Contributor
You are executing a lot of tasks in a loop and Activiti builds up a stack of these tasks so you'll get a StackOverflowError at some point. You can increase the JVM stack settings if you really want to do this. But typically you should use a multi instance construct instead.

Best regards,