ashb closed pull request #3995: [AIRFLOW-3148] Remove unnecessary arg 
"parameters" in RedshiftToS3Transfer
URL: https://github.com/apache/incubator-airflow/pull/3995
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/airflow/operators/redshift_to_s3_operator.py 
b/airflow/operators/redshift_to_s3_operator.py
index b1fee56e95..2bad90a861 100644
--- a/airflow/operators/redshift_to_s3_operator.py
+++ b/airflow/operators/redshift_to_s3_operator.py
@@ -42,6 +42,7 @@ class RedshiftToS3Transfer(BaseOperator):
     :parame verify: Whether or not to verify SSL certificates for S3 
connection.
         By default SSL certificates are verified.
         You can provide the following values:
+
         - False: do not validate SSL certificates. SSL will still be used
                  (unless use_ssl is False), but SSL certificates will not be
                  verified.
@@ -69,7 +70,6 @@ def __init__(
             verify=None,
             unload_options=tuple(),
             autocommit=False,
-            parameters=None,
             include_header=False,
             *args, **kwargs):
         super(RedshiftToS3Transfer, self).__init__(*args, **kwargs)
@@ -82,7 +82,6 @@ def __init__(
         self.verify = verify
         self.unload_options = unload_options
         self.autocommit = autocommit
-        self.parameters = parameters
         self.include_header = include_header
 
         if self.include_header and \


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to