Replies: 10 comments 5 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Should this be a feature request? Seems like the naming of the function is misleading since it doesn't stick with the widely known convention of the native As our team was recently bitten quite severely by this "misunderstanding" my preference would of course to make finally always run, regardless of what happens before. |
Beta Was this translation helpful? Give feedback.
-
I would also expect |
Beta Was this translation helpful? Give feedback.
-
Will this ever be fixed? :) |
Beta Was this translation helpful? Give feedback.
-
+1, any fix for this? Very important for critical batched workloads. |
Beta Was this translation helpful? Give feedback.
-
+1 Hard to use this to it's full potential if we cannot rely on finally being called. |
Beta Was this translation helpful? Give feedback.
-
To this day, this issue is still confusing and differs from what the expectation is for a |
Beta Was this translation helpful? Give feedback.
-
The fix for this is fairly simple, but I don't know if it is a fix or not. Inside protected function ensureFailedBatchJobIsRecorded(string $uuid, $command, $e)
{
if (! in_array(Batchable::class, class_uses_recursive($command))) {
return;
}
if ($batch = $command->batch()) {
foreach ($command->chained ?? [] as $index => $chained) {
$batch->decrementPendingJobs($uuid.'-'.$index);
}
$batch->recordFailedJob($uuid, $e);
}
} The only reason I am not wanting to spend time on making a PR is that it is likely a breaking change since the current mode of operation is seen as the desired effect, and not a bug: #39243 (comment) I also don't know if this is the ideal way to handle the implementation. There is not a way to "fail" the remaining jobs in the chain because they were never dispatched to the queue to begin with, and it doesn't make sense to record a failed job when it hasn't been attempted. Another way would be to modify if ($batch = $command->batch()) {
$batch->incrementTotalJobs(1);
} This way, however, doesn't play very nice with the |
Beta Was this translation helpful? Give feedback.
-
Today I had the same problem with this task, but after using the code below, I was able to make finally() be called: <?php
public function handle()
{
try {
... Your code here, which throws an error
} catch (catch (Exception $e) {
$this->fail($e);
}
} May this help someone in the future as it helped me today. |
Beta Was this translation helpful? Give feedback.
-
Hi, is it just me or does the finally callback on
bus::batch(...)->finally(...)
not get called when a job fails?The
catch(...)
callbacks are, but not the finally - which should be called both when exceptions are caught and when all jobs run successfully... shouldn't it?is this a bug, or do I just not understand something?
Example:
Beta Was this translation helpful? Give feedback.
All reactions