-
Quirrel has issues invoking tasks because there is an error. I have manually invoked a cron from the UI. I see the following in my logs - so that means the backend is getting the request but not getting invoked properly
More info on the api-server - https://redwoodjs.com/cookbook/self-hosting-redwood.html#self-hosting-redwood |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Judging by the error, it looks like you haven't exported a Could it be that you have |
Beta Was this translation helpful? Give feedback.
Judging by the error, it looks like you haven't exported a
handler
in that file.Could it be that you have
export default CronJob(...)
in your handler file? For Redwood, it should beexport const handler = CronJob(...)
instead.