Skip to content

Commit

Permalink
[JBPM-10088] Do not create transaction for regular timer task
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtirado committed Nov 22, 2023
1 parent ab096b6 commit d4afafc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void executeTimerJob(Timer timer) {
Thread.currentThread().interrupt();
}
try {
invokeTransaction(this::executeTimerJobInstance, timerJobInstance);
executeTimerJobInstance(timerJobInstance);
} catch (Exception e) {
recoverTimerJobInstance(timerJob, timer, e);
}
Expand Down

0 comments on commit d4afafc

Please sign in to comment.