You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tap as is, cannot correctly extract an Excel file from an SFTP server when connecting using a password.
I have found three issues in connecting to SFTP and tap an excel file, where two are fixed by PR #86 and the third is using a password in the uri as sftp://name:password@host:port//path/to/
At first connecting to the SFTP server and finding the file works as intended. The consequent streamreader then forgets that this is the intended route. A patch that works for me would be to add this in file format_hanlder.py in get_streamreader(uri,...):
but this seems to prevent a correct handling whenever keys are actually present and look_for_keys needs to be True.
Note: it might be due to keyfiles already existing in the /.ssh/ folder, and failing before the authentication using the password is never correctly checked.
The text was updated successfully, but these errors were encountered:
ElmoreV
changed the title
SFTP issues
SFTP x Excel cannot be tapped
Dec 3, 2024
The tap as is, cannot correctly extract an Excel file from an SFTP server when connecting using a password.
I have found three issues in connecting to SFTP and tap an excel file, where two are fixed by PR #86 and the third is using a password in the uri as
sftp://name:password@host:port//path/to/
At first connecting to the SFTP server and finding the file works as intended. The consequent streamreader then forgets that this is the intended route. A patch that works for me would be to add this in file format_hanlder.py in get_streamreader(uri,...):
but this seems to prevent a correct handling whenever keys are actually present and look_for_keys needs to be True.
Note: it might be due to keyfiles already existing in the /.ssh/ folder, and failing before the authentication using the password is never correctly checked.
The text was updated successfully, but these errors were encountered: