Skip to content

Commit

Permalink
Merge pull request #35449 from schelmo/8.x
Browse files Browse the repository at this point in the history
[8.x] fix delay() on database queue
  • Loading branch information
themsaid committed Dec 2, 2020
2 parents 211929a + 8cfd8f8 commit 7618102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/DatabaseQueue.php
Expand Up @@ -119,7 +119,7 @@ public function later($delay, $job, $data = '', $queue = null)
$job,
$this->createPayload($job, $this->getQueue($queue), $data),
$queue,
null,
$delay,
function ($payload, $queue, $delay) {
return $this->pushToDatabase($queue, $payload, $delay);
}
Expand Down

0 comments on commit 7618102

Please sign in to comment.