Skip to content
This repository has been archived by the owner on May 1, 2022. It is now read-only.

Releases: sebsel/queue-for-kirby

Fail jobs that terminate the process

05 Nov 11:27
Compare
Choose a tag to compare

Jobs that terminate the process still also terminate the worker.php, but now it marks the job as failed, so the worker can move on when it restarts.

Widget for failed jobs

26 Jul 19:33
Compare
Choose a tag to compare

This adds:

  • A panel widget! 🎉
  • queue::retry($failedJob), to add a failed job back to the queue
  • queue::remove($failedJob), to remove a failed job entirely
  • [BREAKING] queue::jobs() and queue::failedJobs() now return a Collection instead of an array, so you can use queue::jobs()->first() and all the good stuff
  • DocBlocks, cuz yeah