pierrejeambrun commented on code in PR #31579:
URL: https://github.com/apache/airflow/pull/31579#discussion_r1208142474
##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -3103,6 +3105,22 @@ components:
readOnly: true
nullable: true
+ TriggererStatus:
+ type: object
+ description: |
+ The status and the latest triggerer heartbeat.
+
+ *New in version 2.6.2*
+ properties:
+ status:
+ $ref: '#/components/schemas/HealthStatus'
+ latest_triggerer_heartbeat:
+ description: The time the triggerer last do a heartbeat.
Review Comment:
fixed
##########
airflow/www/static/js/types/api-generated.ts:
##########
@@ -1205,6 +1206,19 @@ export interface components {
*/
latest_scheduler_heartbeat?: string | null;
};
+ /**
+ * @description The status and the latest triggerer heartbeat.
+ *
+ * *New in version 2.6.2*
+ */
+ TriggererStatus: {
+ status?: components["schemas"]["HealthStatus"];
+ /**
+ * Format: datetime
+ * @description The time the triggerer last do a heartbeat.
Review Comment:
fixed
--
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]