ferruzzi commented on code in PR #28318:
URL: https://github.com/apache/airflow/pull/28318#discussion_r1049157780
##########
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:
I think it should be alright.
--
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]