-
I have setup
Deployment process is working fine, it register the
When I invoke cron job I get these logs: 2022-08-03T14:43:02.600902477Z app[web.1]: {"level":30,"time":1659537782600,"pid":7,"hostname":"3ac4d13a0bf1","reqId":"req-5a","req":{"method":"GET","url":"/activity","hostname":"queue.some.com","remoteAddress":"172.17.0.1","remotePort":50470},"msg":"incoming request"}
2022-08-03T14:43:23.324212618Z app[web.1]: {"level":30,"time":1659537803323,"pid":7,"hostname":"3ac4d13a0bf1","reqId":"req-5b","req":{"method":"POST","url":"/queues/https%3A%2F%2Fwww.some.com%2Fapi%2Fqueues%2Fsync_ebay/%40cron","hostname":"queue.some.com","remoteAddress":"172.17.0.1","remotePort":50474},"msg":"incoming request"}
2022-08-03T14:43:23.328877486Z app[web.1]: {"level":30,"time":1659537803328,"pid":7,"hostname":"3ac4d13a0bf1","reqId":"req-5b","res":{"statusCode":204},"responseTime":3.1012649536132812,"msg":"request completed"}
2022-08-03T14:44:01.574774415Z app[web.1]: {"level":10,"time":1659537841572,"pid":7,"hostname":"3ac4d13a0bf1","module":"owl","msg":"Stale-Checker: Starting."}
2022-08-03T14:44:01.574828583Z app[web.1]: {"level":10,"time":1659537841573,"pid":7,"hostname":"3ac4d13a0bf1","module":"owl","msg":"Stale-Checker: No stale jobs found."}
2022-08-03T14:44:23.742714065Z app[web.1]: {"level":30,"time":1659537863742,"pid":7,"hostname":"3ac4d13a0bf1","reqId":"req-5c","req":{"method":"GET","url":"/activity","hostname":"queue.ocwatchguy.com","remoteAddress":"172.17.0.1","remotePort":50642},"msg":"incoming request"} |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
The 204 response code isn't related to your Queue code, but it's the quirrel-internal response code for invoking a job. So nothing interesting there. I see your cron schedule is |
Beta Was this translation helpful? Give feedback.
-
If anyone having an issue with Dokku and Quirrel setup I would recommend checking if the server contains a worker as it was an issue for me in beginning, the deployment is actually easy and doesn't have any issues, just enable the worker :) dokku ps:scale my_app web=1 worker=1 also big thanks to @Skn0tt for helping with the issue |
Beta Was this translation helpful? Give feedback.
If anyone having an issue with Dokku and Quirrel setup I would recommend checking if the server contains a worker as it was an issue for me in beginning, the deployment is actually easy and doesn't have any issues, just enable the worker :)
also big thanks to @Skn0tt for helping with the issue