The GitHub Actions job "Tests (AMD)" on airflow.git/llm-typed-output has failed.
Run started by GitHub user kaxil (triggered by kaxil).

Head commit for run:
2c1cf41d846af6b74ec353a5806fb0515a8fc711 / Kaxil Naik <[email protected]>
Make XCom stringify readable for user Pydantic/dataclass classes

Strip DagBag's ``unusual_prefix_<sha>_`` module prefix from the displayed
classname and repr-quote string field values inside the 
``classname@version=N(...)``
form. Before this change, an XCom value carrying a user-defined Pydantic class
rendered in the UI as:

   unusual_prefix_9ce9eb..._typed_xcom_demo.TicketAnalysis@version=1(
     priority=high,category=bug,summary=Nightly ETL...)

After:

   typed_xcom_demo.TicketAnalysis@version=1(
     priority='high', category='bug', summary='Nightly ETL...')

The prefix is a DagBag artifact (added to avoid ``sys.modules`` clashes
between same-named DAG files in different bundles) and has no value in the
human-readable XCom display. Quoting strings disambiguates ``field=value``
from a bare token and matches Pydantic/dataclass repr conventions.

Report URL: https://github.com/apache/airflow/actions/runs/26575183656

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to