I saw a lot of posts about the above, and tried many different things, but nothing seems to work.
This is what my job looks like:
// Jobs Config Generator
// Jobs Config | Velo by Wix
{
“jobs”: [
{
“functionLocation”: “/runDeals.jsw”,
“functionName”: “getValuesFromSheet”,
“executionConfig”: {
“time”: “19:00”
}
},
{
“functionLocation”: “/runDeals.jsw”,
“functionName”: “getValuesFromSheet”,
“executionConfig”: {
“cronExpression”: “0 * * * *”
}
}
]
}
The first job is scheduled to execute at 7pm UTC (3pm EST)
The second job is scheduled to run every hour
(These are tests)
I read almost every post here (and there are a lot) regarding job not running but nothing works.
Please help.