rawwar commented on code in PR #44383:
URL: https://github.com/apache/airflow/pull/44383#discussion_r1860748342
##########
airflow/api_fastapi/core_api/datamodels/monitor.py:
##########
@@ -49,4 +51,8 @@ class HealthInfoSchema(BaseModel):
metadatabase: BaseInfoSchema
scheduler: SchedulerInfoSchema
triggerer: TriggererInfoSchema
- dag_processor: DagProcessorInfoSchema
+ dag_processor: DagProcessorInfoSchema | None = None
+
+ @model_serializer()
+ def serialize(self):
+ return {k: v for k, v in self if not (k == "dag_processor" and v is
None)}
Review Comment:
Sorry. I meant, we did not include fields query param in list dag runs as we
did not want to have model with dynamic fields.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]