From f4d116592c54e5bff13f28123f1b196a72858aab Mon Sep 17 00:00:00 2001 From: Deeman Date: Sun, 1 Mar 2026 00:02:50 +0100 Subject: [PATCH] fix(supervisor): add extract_cot_combined to workflows.toml fct_cot_positioning UNIONs both cot/ and cot_combined/ landing dirs, but only extract_cot_dataset was scheduled. Without cot_combined/ present, SQLMesh would fail with "No files found" on every tick. Co-Authored-By: Claude Sonnet 4.6 --- infra/supervisor/workflows.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/infra/supervisor/workflows.toml b/infra/supervisor/workflows.toml index 991df26..5e44577 100644 --- a/infra/supervisor/workflows.toml +++ b/infra/supervisor/workflows.toml @@ -18,6 +18,11 @@ module = "cftc_cot.execute" entry = "extract_cot_dataset" schedule = "weekly" +[extract_cot_combined] +module = "cftc_cot.execute" +entry = "extract_cot_combined" +schedule = "weekly" + [extract_prices] module = "coffee_prices.execute" entry = "extract_coffee_prices"