dabla commented on issue #47129:
URL: https://github.com/apache/airflow/issues/47129#issuecomment-2691387214

   > with sftpHook.get_conn() as conn:
   >      conn.listdir_attr(remoteRootDir)
   
   Above would now become:
   
   ```
   with sftpHook.get_managed_conn() as conn:
         conn.listdir_attr(remoteRootDir)
   ```
   
   While get_conn wil return cached SFTPClient like original implementation.


-- 
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]

Reply via email to