bulltrackers-module 1.0.761 → 1.0.762
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.
|
@@ -58,9 +58,10 @@ async function planComputations(req, res) {
|
|
|
58
58
|
|
|
59
59
|
// 1. Walk the Manifest
|
|
60
60
|
for (const entry of manifest) {
|
|
61
|
-
// FILTER: Only Roots (Pass
|
|
62
|
-
//
|
|
63
|
-
|
|
61
|
+
// FILTER: Only Roots (Pass 1)
|
|
62
|
+
// Graph.js assigns roots (no dependencies) to Pass 1.
|
|
63
|
+
// Resilience: If code changes and a comp becomes Pass 2+, it won't be scheduled here.
|
|
64
|
+
if (entry.pass !== 1) continue;
|
|
64
65
|
|
|
65
66
|
// Calculate Occurrences
|
|
66
67
|
const occurrences = getOccurrencesInWindow(entry.schedule, now, windowEnd);
|