bulltrackers-module 1.0.191 → 1.0.192
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.
|
@@ -169,12 +169,13 @@ async function runComputationPass(config, dependencies, computationManifest) {
|
|
|
169
169
|
const prevDateStr = prevDate.toISOString().slice(0, 10);
|
|
170
170
|
const previousResults = await fetchExistingResults(prevDateStr, calcsRunning, computationManifest, config, dependencies, true);
|
|
171
171
|
|
|
172
|
+
// Changed skipstatus write to false to ensure updates are recorded
|
|
172
173
|
if (finalStandardToRun.length) {
|
|
173
|
-
const updates = await runStandardComputationPass(dateToProcess, finalStandardToRun, `Pass ${passToRun} (Std)`, config, dependencies, rootData, existingResults, previousResults,
|
|
174
|
+
const updates = await runStandardComputationPass(dateToProcess, finalStandardToRun, `Pass ${passToRun} (Std)`, config, dependencies, rootData, existingResults, previousResults, false);
|
|
174
175
|
Object.assign(dateUpdates, updates);
|
|
175
176
|
}
|
|
176
177
|
if (finalMetaToRun.length) {
|
|
177
|
-
const updates = await runMetaComputationPass(dateToProcess, finalMetaToRun, `Pass ${passToRun} (Meta)`, config, dependencies, existingResults, previousResults, rootData,
|
|
178
|
+
const updates = await runMetaComputationPass(dateToProcess, finalMetaToRun, `Pass ${passToRun} (Meta)`, config, dependencies, existingResults, previousResults, rootData, false);
|
|
178
179
|
Object.assign(dateUpdates, updates);
|
|
179
180
|
}
|
|
180
181
|
} catch (err) {
|