User Story
As a developer reviewing the scheduled ETL jobs, I want the PR description to accurately reflect the deployed cron schedule so I'm not confused about when each step runs.
Definition of Done
Acceptance Criteria
- PR description accurately documents both cron expressions: terminals at
0 * * * *, distances at 5 * * * *
Technical Elaboration
The PR description currently states both steps run at 0 * * * *. The actual implementation in catalog-etl.scheduler.ts offsets the distances step to 5 * * * * to ensure terminals populate first. The description needs to be corrected.
File: backend/src/modules/catalog-etl/schedulers/catalog-etl.scheduler.ts line 26
Design Elaboration
Doc-only fix — no code change needed.
User Story
As a developer reviewing the scheduled ETL jobs, I want the PR description to accurately reflect the deployed cron schedule so I'm not confused about when each step runs.
Definition of Done
terminal-distances-syncis scheduled at minute 5 (5 * * * *), not minute 0Acceptance Criteria
0 * * * *, distances at5 * * * *Technical Elaboration
The PR description currently states both steps run at
0 * * * *. The actual implementation incatalog-etl.scheduler.tsoffsets the distances step to5 * * * *to ensure terminals populate first. The description needs to be corrected.File:
backend/src/modules/catalog-etl/schedulers/catalog-etl.scheduler.tsline 26Design Elaboration
Doc-only fix — no code change needed.