This commit is contained in:
张成
2026-04-16 17:39:25 +08:00
parent df0aacc782
commit a45418883c
6 changed files with 212 additions and 63 deletions

View File

@@ -142,6 +142,12 @@ class DeliverHandler extends BaseHandler {
return {
deliveredCount: deliverCommands.length,
filterSummary: {
rawCount: pendingJobs.length,
passedCount: filteredJobs.length,
deliverCount: jobsToDeliver.length,
filteredCount: Math.max(0, pendingJobs.length - filteredJobs.length)
},
...result
};
}