Issue with Quartz Scheduler - Job State become "Paused" after or before firing once

Currently using jmix.quartz version 1.5.4, the issue I’m having is that after I setup the quartz for scheduler and run it, the quartz job showing that the created quartz I had created has changed the job state to “Paused”, I have done log to check if it was problem from my class function that caused it to paused due to error but no error logs was captured and the job state would keep changing to “Paused” each time I resumed it.

image
This how I set it up and I set the cron to occur every 2 minutes as I want to test it

Screenshot 2024-06-12 172418

Hope you guys can able to guide and help me on this
Thank you

Hello.

Does this job actually not running at all or this is a state display issue only (but job is working)? There is an issue with state value - Quartz Job displayed as Paused during execution · Issue #2951 · jmix-framework/jmix · GitHub
If execution duration is noticeable you may face this issue.

If it doesn’t work at all:

  1. Temporary create another Job class with no logic (just add log output) and use it as class for your job to check if it works.
  2. Try another form of “every 2 minutes” CRON expression - 0 0/2 * * * ?

Regards,
Ivan