Commit 9186d7a3 authored by Taylor Otwell's avatar Taylor Otwell

Adding failed queue job options.

parent 1ac38202
...@@ -58,7 +58,24 @@ return array( ...@@ -58,7 +58,24 @@ return array(
'redis' => array( 'redis' => array(
'driver' => 'redis', 'driver' => 'redis',
'queue' => 'default', 'queue' => 'default',
), ),
),
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
'failed' => array(
'database' => 'mysql', 'table' => 'failed_jobs',
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment