Skip to content

Commit

Permalink
[AIRFLOW-2248] Fix wrong param name in RedshiftToS3Transfer doc
Browse files Browse the repository at this point in the history
The parameter 'unload_options' is wrongly referred to as 'options'
in the RedshiftToS3Transfer doc. This PR fixes it.
  • Loading branch information
sekikn committed Mar 24, 2018
1 parent 05e1861 commit a7a771f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/operators/redshift_to_s3_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ()
Expand Down

0 comments on commit a7a771f

Please sign in to comment.