From 9186d7a31dbd13aa436c526c4fc1220f2c2db7dc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 26 Nov 2013 10:11:29 -0600 Subject: [PATCH] Adding failed queue job options. --- app/config/queue.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/app/config/queue.php b/app/config/queue.php index 32cbabcb..6c0fa523 100644 --- a/app/config/queue.php +++ b/app/config/queue.php @@ -58,7 +58,24 @@ 'redis' => array( 'driver' => 'redis', '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', ),