RachitSharma2001 commented on code in PR #28318:
URL: https://github.com/apache/airflow/pull/28318#discussion_r1049120322
##########
tests/system/providers/ftp/example_ftp.py:
##########
@@ -57,7 +61,30 @@
)
# [END howto_operator_ftp_get]
+ # [START howto_operator_ftps_put]
+ ftps_put = FTPSFileTransmitOperator(
+ task_id="test_ftps_put",
+ ftp_conn_id="ftps_default",
+ local_filepath="/tmp/filepath",
+ remote_filepath="/remote_tmp/filepath",
+ operation=FTPOperation.PUT,
Review Comment:
Yes that is intentional, as FTPS still uses the same operations (PUT and
GET) as FTPFileTransmitOperator. On second thought, I was wondering if that
name is misleading. Do you think I should change the name to something like
`Operation` or something?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]