diff --git a/api/apps/geoprocessing/src/modules/scenario-planning-units-features-aggregate/scenario-planning-units-features-aggregate-processor.ts b/api/apps/geoprocessing/src/modules/scenario-planning-units-features-aggregate/scenario-planning-units-features-aggregate-processor.ts index ac2c3c5f7d..fb8e588925 100644 --- a/api/apps/geoprocessing/src/modules/scenario-planning-units-features-aggregate/scenario-planning-units-features-aggregate-processor.ts +++ b/api/apps/geoprocessing/src/modules/scenario-planning-units-features-aggregate/scenario-planning-units-features-aggregate-processor.ts @@ -44,6 +44,13 @@ export class ScenarioPlanningUnitsFeaturesAggregateProcessor ) {} async process(job: Job): Promise { + /** + * @debt Bypassing the original query, whose results are not needed anymore, + * and which was expensive to run. The flow that includes this processor + * should be cleaned up instead, to fully bypass + * ScenarioPlanningUnitsFeaturesAggregateProcessor. + */ + return true; const scenarioId = job.data.scenarioId; await this.entityManager.query(query, [scenarioId]); return true;