From 08fa81453377003aafbdd19563d846fa71155e0d Mon Sep 17 00:00:00 2001 From: Brent Hagany Date: Mon, 21 Aug 2023 16:09:59 -0500 Subject: [PATCH] Add missing template fields to DataformCreateCompilationResultOperator (#33585) All other operators template these fields, and `impersonation_chain` is explicity said to be templated in the operator's docstring --- airflow/providers/google/cloud/operators/dataform.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airflow/providers/google/cloud/operators/dataform.py b/airflow/providers/google/cloud/operators/dataform.py index 005103e44195d..aeb6e05c0fbc2 100644 --- a/airflow/providers/google/cloud/operators/dataform.py +++ b/airflow/providers/google/cloud/operators/dataform.py @@ -65,6 +65,8 @@ class DataformCreateCompilationResultOperator(GoogleCloudBaseOperator): account from the list granting this role to the originating account (templated). """ + template_fields = ("repository_id", "impersonation_chain") + def __init__( self, project_id: str,