From e76b807dee1a55aef96cb7d2bea4f6a6f8ab51aa Mon Sep 17 00:00:00 2001 From: Charles Machalow Date: Mon, 31 Oct 2022 14:19:28 -0700 Subject: [PATCH] SLAMiss is nullable and not always given back when pulling task instances See https://github.com/apache/airflow-client-python/issues/50 for an example of the related error --- airflow/www/static/js/types/api-generated.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/www/static/js/types/api-generated.ts b/airflow/www/static/js/types/api-generated.ts index 4d08be848d45a..4719ed970bf88 100644 --- a/airflow/www/static/js/types/api-generated.ts +++ b/airflow/www/static/js/types/api-generated.ts @@ -1156,7 +1156,7 @@ export interface components { timestamp?: string; description?: string | null; notification_sent?: boolean; - }; + } | null; Trigger: { id?: number; classpath?: string;