bulltrackers-module 1.0.651 → 1.0.652
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.
|
@@ -205,7 +205,7 @@ async function executeDispatchTask(dateStr, pass, targetComputation, config, dep
|
|
|
205
205
|
const execDate = new Date(dateStr + 'T00:00:00Z');
|
|
206
206
|
const updates = (calcManifest.type === 'standard')
|
|
207
207
|
? await StandardExecutor.run(execDate, calcsToRun, `Pass ${pass}`, config, dependencies, rootData, existingResults, previousResults)
|
|
208
|
-
: await MetaExecutor.run(execDate, calcsToRun, `Pass ${pass}`, config, dependencies, existingResults, previousResults
|
|
208
|
+
: await MetaExecutor.run(execDate, calcsToRun, `Pass ${pass}`, config, dependencies, rootData, existingResults, previousResults);
|
|
209
209
|
|
|
210
210
|
return { date: dateStr, updates };
|
|
211
211
|
}
|