getting error in every time in the logs

0
     ERROR - ActionManager: Exception in execution of monitored action 'Unnamed-Action-91' (execution id: ddaa85e3-7d7c-48c0-9183-88702eb29bd9, execution type: SCHEDULED_EVENT) 2021-08-17 23:59:05.975 ERROR - ActionManager: com.mendix.core.CoreRuntimeException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.mendix.core.CoreRuntimeException: Exception occurred in action '{}', all database changes executed by this action were rolled back         at com.mendix.basis.actionmanagement.ActionManagerBase.executeSync(ActionManagerBase.java:156) Caused by: com.mendix.systemwideinterfaces.MendixRuntimeException: com.mendix.core.CoreRuntimeException: Exception occurred in action '{}', all database changes executed by this action were rolled back         at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:30)
asked
1 answers
0

So primarily this error message already shows you that there is something happening with a scheduled event (SE). What you can do is check if there are any scheduled events kicking off.

Using Logs in SE

What might be a good thing to do to find the problem is adding a log to the start of every SE to state that the event is started and one to the end to state the event is finished. If in this case one errors out, you can see this because the event was never finished (missing LOG for finished SE).

Calculating interval time

Another great way to track which SE might error is by seeing the interval of the errors and checking which SE has the same interval for kicking of :)

answered