Browse Source

Adding failed queue job options.

Taylor Otwell 10 years ago
parent
commit
9186d7a31d
1 changed files with 18 additions and 1 deletions
  1. 18 1
      app/config/queue.php

+ 18 - 1
app/config/queue.php

@@ -58,7 +58,24 @@ return array(
 		'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',
 
 	),