Skip to content

Commit 9e1a23e

Browse files
authored
Ignorable Tables Update (#14)
* added failed_jobs to ignorable_table config. Updated readme to reflect. * Fix styling
1 parent 4459cb4 commit 9e1a23e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ Adjust the configuration file to suite your application.
7777
// Do you want to capture queries on specific tables?
7878
// If you are utilizing the database queue driver, you need to
7979
// ignore the jobs table, or you'll potentially get infinite capture loops.
80-
'jobs'
80+
'jobs',
81+
'failed_jobs'
8182
],
8283
'ignorable_statements' => [
8384
// Do you want to ignore specific SQL statements?

config/querywatcher.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
],
2020
'ignorable_tables' => [
2121
'jobs',
22+
'failed_jobs',
2223
],
2324
'ignorable_statements' => [
2425
'create',

0 commit comments

Comments
 (0)