-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c.put confusion about string vs file-like object in local #1749
Comments
Any updates on this? (Also thanks for all the work on Fabric et al!) Fabric 2.1.3 |
Sounds like a legit bug, will take a look later. Patches (and tests! since ours all pass :( implying we're missing some...) welcome. |
Looking at this now, I'm not actually sure the issue is assumption of FLO, I think it's instead just a straight up lack of implementing correct remote path munging - in other words, we're asking the SFTP server to open the directory as a file to write, instead of tacking on the local file's basename to the remote directory path. Partial debug log from Fabric's end:
Then part of the traceback shows we're throwing that directory path into CMD_OPEN, in t, msg = self._request(CMD_OPEN, filename, imode, attrblock) Which eventually hits that same file/class' error handling around what the SFTP server said was wrong with the IO operation (which is why it's just "Failure" because of course it is...AFAIK that's OpenSSH's fault.) Anyway, time to write some tests to prove this and then figure out if it's a logic oops (I thought we were constructing an appended path at some point) or an actual straight up missing piece of functionality. |
OK, nope, all the munging is around empty or relative remote paths, there's no is-directory check. |
While I'm in here, wondering how to handle FLOs too, in the case where remote path is a directory. In v1, we looked at FLOs' Anyway, so here in v2 we have the opportunity to address that for reals, or to just throw an explicit exception saying "whoa hey you need to give a non-directory remote file path for these". Probably both, since not all FLOs necessarily have the name attribute anyways. |
OK, that's all fixed up, will be out in next bugfix release 🎉 |
According to transfer.put() docs, I should be able to either provide local path to a file (as a string), or a file-like object.
When using the former (string), I can specify in the
remote
path only the target directory. This is used in some examples:But when I try to do the same (
c.put('file.txt', '/home/me/dir')
, I always end up withIOError: Failure
, because it is actually behaving as if thelocal
path was a file-like object and not a string.It fails specifically on
paramiko.transport.sftp.sftp._log: [chan 0] open('/home/me/dir', 'wb')
The solution is to always provide the full path, e.g.
But that is inconsistent with the docs and examples.
Finally, having to provide the full path to
$HOME
is less than ideal, but there seems to be issue for that already #1653The text was updated successfully, but these errors were encountered: