laravel-job-status icon indicating copy to clipboard operation
laravel-job-status copied to clipboard

Add ability to track Job progress, status and result dispatched to Queue.

Results 17 laravel-job-status issues
Sort by recently updated
recently updated
newest added

This PR adds the missing `updated_at` property to the PHPDoc annotation of the `JobStatus` model.

Hi there. I am trying to use this great package at first time. But I got one issue. When job get exception, the status not changing to 'failed', but stay...

Thank you for a very useful package, but it has one issue - it's sending too many queries. Every time you want to make an update, it's making one more...

When queueing/monitoring a job with the ShouldBeUnique trait, the dispatch should not result in duplicate status rows in the DB. I made a quick and dirty modification to Trackable.php based...

When dispatching a job fails because of a missing connection, a record remains in the jobs table with the status of `queued`. This can be handled manually by wrapping each...

bug

For consistency, create and update on same connection. Also, creates issues for testing when test is executing in a transaction.

I might be doing something wrong here, but I'm running into an issue where, if the Laravel queue is set to use Beanstalk, job exceptions are not handled correctly. The...

I'm trying to use this with the laravel-excel package which allows chunked importing of CSV data. (https://docs.laravel-excel.com/3.1/imports/queued.html#queuing-chunks) Laravel version: 5.6.* The problem I'm running into seems to be in how...

I get this error when the job is dispatched. Call to undefined method Illuminate\Foundation\Application::query() Points here as origin of error, ` $status = $entityClass::query()->create($data) ` Any idea on how to...

Laravel does support configurable names for the job table name. As we're not using the standard jobs name for some developers it's sometimes kind of irritating the table names do...