fix: route macro_news documents as macro_event so global event classification runs
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build-3 Pipeline was successful
ci/woodpecker/push/build-1 Pipeline was successful
ci/woodpecker/push/build-2 Pipeline was successful
ci/woodpecker/push/finalize Pipeline was successful
Build and Push / lint-and-test (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.adapters.broker_adapter name:broker-adapter]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.aggregation.worker name:aggregation]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.extractor.worker name:extractor]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.ingestion.worker name:ingestion]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.lake_publisher.worker name:lake-publisher]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.parser.worker name:parser]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.recommendation.worker name:recommendation]) (push) Has been cancelled
Build and Push / build-services (map[cmd:python -m services.scheduler.app name:scheduler]) (push) Has been cancelled
Build and Push / build-services (map[cmd:uvicorn services.api.app:app --host 0.0.0.0 --port 8000 name:query-api]) (push) Has been cancelled
Build and Push / build-services (map[cmd:uvicorn services.risk.app:app --host 0.0.0.0 --port 8000 name:risk]) (push) Has been cancelled
Build and Push / build-services (map[cmd:uvicorn services.symbol_registry.app:app --host 0.0.0.0 --port 8000 name:symbol-registry]) (push) Has been cancelled
Build and Push / build-services (map[cmd:uvicorn services.trading.app:app --host 0.0.0.0 --port 8000 name:trading-engine]) (push) Has been cancelled
Build and Push / build-dashboard (push) Has been cancelled
Build and Push / build-superset (push) Has been cancelled
Build and Push / integration-test (push) Has been cancelled
Build and Push / beta-gate (push) Has been cancelled

This commit is contained in:
Celes Renata
2026-04-28 16:18:02 +00:00
parent 58613955e4
commit c188677330
+4 -4
View File
@@ -211,15 +211,15 @@ async def persist_broker_event(
def _resolve_document_type(source_type: str) -> str: def _resolve_document_type(source_type: str) -> str:
"""Map source_type to a document_type value. """Map source_type to a document_type value.
Note: macro_news articles default to 'article' the extractor Note: macro_news articles are typed as 'macro_event' so the parser
reclassifies them as 'macro_event' only if the content is truly routes them to the macro classification queue for global event
about macro/global events (not company-specific news). extraction rather than standard company-level extraction.
""" """
mapping = { mapping = {
"news_api": "article", "news_api": "article",
"filings_api": "filing", "filings_api": "filing",
"web_scrape": "press_release", "web_scrape": "press_release",
"macro_news": "article", "macro_news": "macro_event",
} }
return mapping.get(source_type, "article") return mapping.get(source_type, "article")