Scheduled jobs not working for me

Hi all,

I am trying to use backend scheduled functions (using jobs.config). The functions I want to run add or delete entries from a database. For now, the database permissions are set to allow all access to everyone.
To start off, I tried to add an entry every hour using a cron expression (later i will need ti get the delete entry to work as well). The expression i used was “* 1 * * *”. After a day I saw no new entries in the DB so i tried to use a specific time - “time”: “08:00” (instead of a cron expression).
Any ideas to why it doesnt work? or maybe what i can do/change so it will work?

TIA

Hey @bezalelkoplon :raised_hand_with_fingers_splayed:

Please enter your job code here as well as the function you’re calling, perhaps you the function returns errors that prevents the job to be completed.

Hi,
Thanks for for reply. Sorry for my (very) late reply, just noticed that you answered.
I actually got it to work by using the time expression “0 * * * *” so it runs once an hour. Since that works for me, I can work with it.