Skip to content

Conversation

@civilcoder55
Copy link
Contributor

Enable batch jobs delay for Beanstalkd queue ⏰

[before]

  • batch jobs was ignoring delay time when pushing into beanstalkd.

[after]

  • batch jobs delay time will be considered and put into beanstalkd.
use App\Jobs\ImportCsv;
use Illuminate\Bus\Batch;
use Illuminate\Support\Facades\Bus;
 
$batch = Bus::batch([
    (new ImportCsv(1, 100))->delay($delay),
    (new ImportCsv(101, 200))->delay($delay)
])->dispatch();

civilcoder55 and others added 3 commits April 2, 2022 05:00
[before]
- batch jobs was ignoring delay time when pushing into beanstalkd.

[after]
- batch jobs delay time will be considered and put into beanstalkd.
@taylorotwell taylorotwell merged commit 15b76f5 into laravel:9.x Apr 2, 2022
@GrahamCampbell GrahamCampbell changed the title [9.x] Enable batch jobs delay for Beanstalkd queue. [9.x] Enable batch jobs delay for Beanstalkd queue Apr 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants