You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/03/19 08:01:45 UTC

[airflow] branch main updated: Add dataflow_default_options to templated_fields (#22367)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 8840203  Add dataflow_default_options to templated_fields (#22367)
8840203 is described below

commit 88402038cac10597a67d3dba6af66eb1bc14377d
Author: NomNomGit <do...@advanced-store.com>
AuthorDate: Sat Mar 19 09:01:02 2022 +0100

    Add dataflow_default_options to templated_fields (#22367)
---
 airflow/providers/google/cloud/operators/dataflow.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/airflow/providers/google/cloud/operators/dataflow.py b/airflow/providers/google/cloud/operators/dataflow.py
index 5e50521..24fe2cd 100644
--- a/airflow/providers/google/cloud/operators/dataflow.py
+++ b/airflow/providers/google/cloud/operators/dataflow.py
@@ -587,6 +587,7 @@ class DataflowTemplatedJobStartOperator(BaseOperator):
         "gcp_conn_id",
         "impersonation_chain",
         "environment",
+        "dataflow_default_options",
     )
     ui_color = "#0273d4"
     operator_extra_links = (DataflowJobLink(),)