Repository: incubator-airflow
Updated Branches:
  refs/heads/master 05e1861e2 -> 1a482d454


[AIRFLOW-2248] Fix wrong param name in RedshiftToS3Transfer doc

The parameter 'unload_options' is wrongly referred to as 'options'
in the RedshiftToS3Transfer doc. This PR fixes it.


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/a7a771ff
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/a7a771ff
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/a7a771ff

Branch: refs/heads/master
Commit: a7a771ff76e831126034d6bc1980a2183f896f93
Parents: 05e1861
Author: Kengo Seki <sek...@apache.org>
Authored: Fri Mar 23 20:17:42 2018 -0400
Committer: Kengo Seki <sek...@apache.org>
Committed: Fri Mar 23 20:17:42 2018 -0400

----------------------------------------------------------------------
 airflow/operators/redshift_to_s3_operator.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/a7a771ff/airflow/operators/redshift_to_s3_operator.py
----------------------------------------------------------------------
diff --git a/airflow/operators/redshift_to_s3_operator.py 
b/airflow/operators/redshift_to_s3_operator.py
index 33ea343..971ea4a 100644
--- a/airflow/operators/redshift_to_s3_operator.py
+++ b/airflow/operators/redshift_to_s3_operator.py
@@ -33,8 +33,8 @@ class RedshiftToS3Transfer(BaseOperator):
     :type redshift_conn_id: string
     :param aws_conn_id: reference to a specific S3 connection
     :type aws_conn_id: string
-    :param options: reference to a list of UNLOAD options
-    :type options: list
+    :param unload_options: reference to a list of UNLOAD options
+    :type unload_options: list
     """
 
     template_fields = ()

Reply via email to