Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/Illuminate/Queue/CallQueuedHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,20 @@ protected function dispatchThroughMiddleware(Job $job, $command)
throw new Exception('Job is incomplete class: '.json_encode($command));
}

$lockReleased = false;

return (new Pipeline($this->container))->send($command)
->through(array_merge(method_exists($command, 'middleware') ? $command->middleware() : [], $command->middleware ?? []))
->then(function ($command) use ($job) {
->finally(function ($command) use (&$lockReleased) {
if (! $lockReleased && $command instanceof ShouldBeUniqueUntilProcessing && ! $command->job->isReleased()) {
$this->ensureUniqueJobLockIsReleased($command);
}
})
->then(function ($command) use ($job, &$lockReleased) {
if ($command instanceof ShouldBeUniqueUntilProcessing) {
$this->ensureUniqueJobLockIsReleased($command);

$lockReleased = true;
}

return $this->dispatcher->dispatchNow(
Expand Down