Skip to content

Commit 8486325

Browse files
authored
Update installation.md
1 parent f1f067a commit 8486325

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/installation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Laravel Workflow can be used with any queue driver that Laravel supports (except
1818
- Database
1919
- Redis
2020

21-
Each queue driver has its own [prerequisites](https://laravel.com/docs/10.x/queues#driver-prerequisites).
21+
Each queue driver has its own [prerequisites](https://laravel.com/docs/12.x/queues#driver-prerequisites).
2222

23-
Laravel Workflow also requires a cache driver that supports [locks](https://laravel.com/docs/10.x/cache#atomic-locks).
23+
Laravel Workflow also requires a cache driver that supports [locks](https://laravel.com/docs/12.x/cache#atomic-locks).
2424

2525
> NOTE: The Amazon SQS queue driver in Laravel has a limitation of 15 minutes (900 seconds) for the maximum delay of a message. This means that if a workflow uses the `WorkflowStub::timer()` or `WorkflowStub::awaitWithTimeout()` method with a value greater than 900 seconds, it will not be able to hibernate for that long and the workflow will fail. This is a limitation of the SQS driver and not a limitation of Laravel Workflow itself. If you are using Laravel Workflow with the SQS driver then you should be aware of this limitation and avoid using values greater than 900 seconds. Alternatively, you can use a different queue driver that does not have this limitation, such as the Redis driver.
2626
@@ -46,4 +46,4 @@ php artisan migrate
4646

4747
## Running Workers
4848

49-
Laravel Workflow uses queues to run workflows and activities in the background. You will need to either run the `queue:work` [command](https://laravel.com/docs/10.x/queues#the-queue-work-command) or use [Horizon](https://laravel.com/docs/10.x/horizon) to run your queue workers. Without a queue worker, workflows and activities will not be processed. You cannot use the sync driver with queue workers.
49+
Laravel Workflow uses queues to run workflows and activities in the background. You will need to either run the `queue:work` [command](https://laravel.com/docs/12.x/queues#the-queue-work-command) or use [Horizon](https://laravel.com/docs/12.x/horizon) to run your queue workers. Without a queue worker, workflows and activities will not be processed. You cannot use the sync driver with queue workers.

0 commit comments

Comments
 (0)