-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
Laravel Package Version
1.22.3
Laravel Version
12.53.0
PHP Version
8.3.29
Database Driver & Version
MySQL 8
Description
Rejecting queued jobs containing a certain word still show up and count towards quota
Steps To Reproduce
Nightwatch::rejectQueuedJobs(function (QueuedJob $job) {
return str_contains($job->name, 'StoreArchive')
|| str_contains($job->name, 'InvokeQueued')
|| str_contains($job->name, 'UpdateModelLastUsed')
|| str_contains($job->name, 'Health');
});Note the "StoreArchive" string being excluded. They don't show in "processed" but show in "queued", this doesn't look quite right and shouldn't show up at all. Or, a new helper for rejectProcessedJobs etc should be introduced, thanks.

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels