We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4459cb4 commit 9e1a23eCopy full SHA for 9e1a23e
README.md
@@ -77,7 +77,8 @@ Adjust the configuration file to suite your application.
77
// Do you want to capture queries on specific tables?
78
// If you are utilizing the database queue driver, you need to
79
// ignore the jobs table, or you'll potentially get infinite capture loops.
80
- 'jobs'
+ 'jobs',
81
+ 'failed_jobs'
82
],
83
'ignorable_statements' => [
84
// Do you want to ignore specific SQL statements?
config/querywatcher.php
@@ -19,6 +19,7 @@
19
20
'ignorable_tables' => [
21
'jobs',
22
+ 'failed_jobs',
23
24
25
'create',
0 commit comments