Open benshanahan1 opened 4 years ago
that's the expected behavior
that's the expected behavior
Thanks! Is it possible for the job to be assigned a unique ID each time it is re-queued?
Including a question here: Is there any way to at least get the result of a specific execution? For example: I have a task that will run every day, but I would like to manage its state. How will I know the result/status of an execution on a specific day, if it keeps the same id?
that's the expected behavior
Thanks! Is it possible for the job to be assigned a unique ID each time it is re-queued?
+1 for at least providing an option to spin off / clone a new job for each cron run. It would be really helpful for the logic of my application too, which considers one job to be one run instance. It would also help with @vitorhenrique123's use case, since each job run would have its own status information.
Hi. This library is super helpful, thank you! I have a job that is scheduled using the
scheduler.cron()
method, e.g.:This job is added to the queue at 8am each morning, as expected. However, it is always added with the exact same job ID. Is this expected behavior? Is it possible to have the job be assigned a unique ID each time it is re-queued rather than the same ID?
Thanks!