Skip to content

[9.x] Enable batch jobs delay for SQS queue - #41788

Merged
taylorotwell merged 2 commits into
laravel:9.xfrom
civilcoder55:enable_batch_jobs_delay_sqs_queue
Apr 2, 2022
Merged

[9.x] Enable batch jobs delay for SQS queue#41788
taylorotwell merged 2 commits into
laravel:9.xfrom
civilcoder55:enable_batch_jobs_delay_sqs_queue

Conversation

@civilcoder55

Copy link
Copy Markdown
Contributor

Enable batch jobs delay for SQS queue ⏰

[before]

  • batch jobs was ignoring delay time when sending message to sqs.

[after]

  • batch jobs delay time will be considered and sent to sqs.
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 2 commits April 2, 2022 05:04
[before]
- batch jobs was ignoring delay time when sending message to sqs.

[after]
- batch jobs delay time will be considered and sent to sqs.
@taylorotwell
taylorotwell merged commit 8326ba8 into laravel:9.x Apr 2, 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