Skip to content

Added asynchronous actions #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 6, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update docs
  • Loading branch information
andrey-helldar committed Apr 6, 2023
commit 3f2ed249efd64022f2eb307b22e90f9b98da4190
20 changes: 18 additions & 2 deletions config/actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,27 @@
*/

'queue' => [
// Connection name

/*
|--------------------------------------------------------------------------
| Queue Connection
|--------------------------------------------------------------------------
|
| This parameter defines the default connection.
|
*/

'connection' => env('ACTIONS_QUEUE_CONNECTION', env('QUEUE_CONNECTION', 'sync')),

// Queue name
/*
|--------------------------------------------------------------------------
| Queue Name
|--------------------------------------------------------------------------
|
| This parameter specifies the name of the queue to which asynchronous
| jobs will be sent.
|
*/

'name' => env('ACTIONS_QUEUE_NAME'),
],
Expand Down