mateusjunges / trackable-jobs-for-laravel

This package allows you to easily track your laravel jobs!
https://mateusjunges.com
MIT License
280 stars 16 forks source link

Improve job status tracking #46

Closed mateusjunges closed 9 months ago

mateusjunges commented 9 months ago

This PR improves how we track job status. I added two new fields: job_id and attempts, which tracks the job id and the number of attempts a job was retried, respectively.

Also, this PR fixes a bug where markAsStarted was resetting the started_at timestamp when a job was retried.