[Fix] Removed re-trigger of activity in Controller.execute()

This commit is contained in:
Robert von Burg 2023-02-24 14:15:12 +01:00
parent 2b05225459
commit 6a927d7fa7
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 0 additions and 6 deletions

View File

@ -154,12 +154,6 @@ public class Controller {
boolean trigger = internalExecute(tx);
// we trigger execution for the same activity if the controller says it is needed
if (trigger) {
logger.info("Triggering additional execution of controller " + this + " after execution.");
triggerExecute(tx);
}
if (tx.needsCommit())
tx.commitOnClose();