mscdex
mscdex
Does this happen consistently at the same point or ? Unfortunately this kind of problem is hard to debug because solving it requires access to the underlying raw packet data,...
Can you post an updated debug log? This different message comes directly from the server unfortunately, so not much can be done about that. If you have access to sftp...
Since that library is not using `ssh2-streams` directly, I would suggest having the `sftp-promises` maintainer upgrade their dependency on `ssh2` first and if the issue persists, lodge an issue on...
Node version?
`fastGet()` and `fastPut()` don't use streams.
@mannharleen At this point, `ssh2-streams` isn't going to be maintained going forward. If you would like to instead test with the `ssh2` rewrite (currently just the master branch there) to...
@theophilusx there is more information available [here](https://github.com/mscdex/ssh2/issues/935#issue-716811113)
I'm open to a pull request to add support for this, but I currently do not have enough free time myself to implement it.
The `filename` *is* supposed to be an absolute path, that's more or less the whole point of "realpath" in general. Are you sure it's not `READDIR` that is your problem...
1. If you're working with actual filesystem paths, you should probably be using a proper `fs.realpath()`. 2. That makes sense. In general you should use absolute paths in SFTP since...