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 2020/12/26 16:08:24 UTC

[airflow] branch master updated: Fix typo in example (#13321)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f4745c8  Fix typo in example (#13321)
f4745c8 is described below

commit f4745c8ce1955c28676b5afe129a88a61aa743b9
Author: smowden <sm...@users.noreply.github.com>
AuthorDate: Sat Dec 26 17:08:13 2020 +0100

    Fix typo in example (#13321)
    
    False should not be passed as a string
---
 airflow/providers/google/cloud/example_dags/example_bigquery_queries.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/google/cloud/example_dags/example_bigquery_queries.py b/airflow/providers/google/cloud/example_dags/example_bigquery_queries.py
index d859f1f..acca757 100644
--- a/airflow/providers/google/cloud/example_dags/example_bigquery_queries.py
+++ b/airflow/providers/google/cloud/example_dags/example_bigquery_queries.py
@@ -105,7 +105,7 @@ for location in [None, LOCATION]:
             configuration={
                 "query": {
                     "query": INSERT_ROWS_QUERY,
-                    "useLegacySql": "False",
+                    "useLegacySql": False,
                 }
             },
             location=location,