Skip to content

Commit 6cfbdef

Browse files
author
Lasse Lehtinen
committed
Updated README.md for --exclude-filter
1 parent 1a43141 commit 6cfbdef

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ php artisan queue:failed:batch-retry --filter="PublishDocumentJob"
3535
php artisan queue:failed:batch-retry --filter="12234"
3636
```
3737

38+
**--exclude-filter**
39+
40+
This is exact same as --filter, except in reverse. It will search all the payloads and exclude those given in the parameter.
41+
42+
```console
43+
php artisan queue:failed:batch-retry --exclude-filter="PublishDocumentJob"
44+
```
45+
3846
**--filter-by-exception**
3947

4048
Same as the `--filter` option, but for the `exception` column in the `failed_jobs` table. Using this option, depending on how many records you have, could be very slow since it will have to do a full table scan to find results.

0 commit comments

Comments
 (0)