brefphp / laravel-bridge

Package to use Laravel on AWS Lambda with Bref
https://bref.sh/docs/frameworks/laravel.html
MIT License
319 stars 63 forks source link

Using `failed_jobs` table instaed of dead-letter queue #22

Closed georgeboot closed 1 year ago

georgeboot commented 3 years ago

This package currently uses a dead-letter queue for failed jobs. This might be more in line with industry standards, but it's a bit different from "the Laravel way".

How hard would it be to use Larvels failed_jobs table instead, so I can easily call artisan job:retry 5?

Also, it seems that the attempts count ($job->tries) doesn't work (https://github.com/brefphp/laravel-bridge/issues/14). This also messes a bit with the default Laravel setup.

Any thoughts?

mnapoli commented 1 year ago

Fixed by https://github.com/brefphp/laravel-bridge/pull/94 😄