pierrejeambrun commented on code in PR #44383:
URL: https://github.com/apache/airflow/pull/44383#discussion_r1862584780
##########
airflow/api_fastapi/core_api/datamodels/monitor.py:
##########
@@ -49,4 +49,4 @@ class HealthInfoSchema(BaseModel):
metadatabase: BaseInfoSchema
scheduler: SchedulerInfoSchema
triggerer: TriggererInfoSchema
- dag_processor: DagProcessorInfoSchema
+ dag_processor: DagProcessorInfoSchema | None = None
Review Comment:
I don't think this can be none. It can be 'unset' or DagProcessorInfoSchema,
but `none` should not be possible as I understand.
--
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]