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

xddeng 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 234d689  Fix S3ToSnowflakeOperator docstring (#12504)
234d689 is described below

commit 234d689387ef89222bfdee481987c37d1e79b5af
Author: Kengo Seki <[email protected]>
AuthorDate: Sat Nov 21 16:27:53 2020 +0900

    Fix S3ToSnowflakeOperator docstring (#12504)
    
    There's a parameter called s3_bucket in its docstring,
    but it doesn't exist actually. The stage parameter exists instead.
---
 airflow/providers/snowflake/transfers/s3_to_snowflake.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/providers/snowflake/transfers/s3_to_snowflake.py 
b/airflow/providers/snowflake/transfers/s3_to_snowflake.py
index 8461ef7..8a3da4c 100644
--- a/airflow/providers/snowflake/transfers/s3_to_snowflake.py
+++ b/airflow/providers/snowflake/transfers/s3_to_snowflake.py
@@ -36,8 +36,8 @@ class S3ToSnowflakeOperator(BaseOperator):
     :type s3_keys: list
     :param table: reference to a specific table in snowflake database
     :type table: str
-    :param s3_bucket: reference to a specific S3 bucket
-    :type s3_bucket: str
+    :param stage: reference to a specific snowflake stage
+    :type stage: str
     :param file_format: reference to a specific file format
     :type file_format: str
     :param schema: reference to a specific schema in snowflake database

Reply via email to