bulltrackers-module 1.0.695 → 1.0.696
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -263,8 +263,8 @@ async function handleSnapshot(config, dependencies, reqBody) {
|
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
const successful = results.filter(r => r.status === 'OK').length;
|
|
266
|
-
const skipped
|
|
267
|
-
const failed
|
|
266
|
+
const skipped = results.filter(r => r.status === 'SKIPPED').length;
|
|
267
|
+
const failed = results.filter(r => r.status === 'ERROR').length;
|
|
268
268
|
|
|
269
269
|
logger.log('INFO', `[Dispatcher] 📸 Snapshot batch complete: ${successful} processed, ${skipped} skipped, ${failed} failed out of ${results.length} total`);
|
|
270
270
|
|