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 2021/05/07 20:20:36 UTC

[airflow] branch master updated: Add short description to BaseSQLToGCSOperator docstring (#15728)

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 f3fada9  Add short description to BaseSQLToGCSOperator docstring (#15728)
f3fada9 is described below

commit f3fada91013f7916b188ceceb0284bc9860d1388
Author: Julian LaNeve <la...@gmail.com>
AuthorDate: Fri May 7 15:20:18 2021 -0500

    Add short description to BaseSQLToGCSOperator docstring (#15728)
---
 airflow/providers/google/cloud/transfers/sql_to_gcs.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/airflow/providers/google/cloud/transfers/sql_to_gcs.py b/airflow/providers/google/cloud/transfers/sql_to_gcs.py
index 028391d..d2e93b3 100644
--- a/airflow/providers/google/cloud/transfers/sql_to_gcs.py
+++ b/airflow/providers/google/cloud/transfers/sql_to_gcs.py
@@ -32,6 +32,8 @@ from airflow.providers.google.cloud.hooks.gcs import GCSHook
 
 class BaseSQLToGCSOperator(BaseOperator):
     """
+    Copy data from SQL to Google Cloud Storage in JSON or CSV format.
+    
     :param sql: The SQL to execute.
     :type sql: str
     :param bucket: The bucket to upload to.