This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-4-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit c30180fc2014ef087520e2762265f88501a1d933 Author: Charles Machalow <[email protected]> AuthorDate: Wed Nov 2 11:37:36 2022 -0700 SLAMiss is nullable and not always given back when pulling task instances (#27423) * 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 * 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 (cherry picked from commit 63638cd2162219bd0a67caface4b1f1f8b88cc10) --- airflow/api_connexion/openapi/v1.yaml | 1 + airflow/www/static/js/types/api-generated.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/airflow/api_connexion/openapi/v1.yaml b/airflow/api_connexion/openapi/v1.yaml index 9967bf1ed1..49f61e3c16 100644 --- a/airflow/api_connexion/openapi/v1.yaml +++ b/airflow/api_connexion/openapi/v1.yaml @@ -2928,6 +2928,7 @@ components: nullable: true notification_sent: type: boolean + nullable: true TaskInstance: type: object diff --git a/airflow/www/static/js/types/api-generated.ts b/airflow/www/static/js/types/api-generated.ts index da7fc40783..74f92a79aa 100644 --- a/airflow/www/static/js/types/api-generated.ts +++ b/airflow/www/static/js/types/api-generated.ts @@ -1146,7 +1146,7 @@ export interface components { timestamp?: string; description?: string | null; notification_sent?: boolean; - }; + } | null; TaskInstance: { task_id?: string; dag_id?: string;
