You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to allow for the tracking of the "status" of an operation.
Currently, the only thing tracked about an Operation is its name, how it was dispatched, and when it was dispatched. It would be extremely useful to also track whether or not the operation job was successful or not.
A possible way would be to add a last_status column or something like that to the operations table. Then hook into Queue::after in the package Service Provider to update on whether or not the job finished with or without a failure.
The text was updated successfully, but these errors were encountered:
It would be great to allow for the tracking of the "status" of an operation.
Currently, the only thing tracked about an
Operation
is its name, how it was dispatched, and when it was dispatched. It would be extremely useful to also track whether or not the operation job was successful or not.A possible way would be to add a
last_status
column or something like that to theoperations
table. Then hook intoQueue::after
in the package Service Provider to update on whether or not the job finished with or without a failure.The text was updated successfully, but these errors were encountered: