mscdex

Results 571 comments of mscdex

Right, that's what I mentioned earlier. For `READDIR` you should not be using absolute paths. It's `REALPATH` that needs them (for obvious reasons).

The problem is that there is no way to distinguish between an encrypted key and a corrupt unencrypted key, so I'm not sure that there is much that can be...

Can you provide more information? Is there an error? Is there text on the `stream.stderr` stream? Does `mkdir` return a non-zero exit code?

You're ignoring any stderr data in that code (`channel.stderr.resume()`). Instead, try logging the output: ```js channel.stderr.pipe(process.stderr); ``` Also check the exit code passed to the `'exit'` and `'close'` event handlers.

Did you check the stderr output? What exit status code (and/or signal) are you receiving in the `'exit'` event handler?

There has to be either an exit code or signal when the remote child process exits. Did you add something like this: ```js channel.on('exit', (code, signal) => { console.log('code', code,...

`fastGet()` doesn't use multiple connections, it only uses parallel reads within the same sftp connection. The reason for no parallel reads in the stream implementations is to mirror the behavior...

I honestly don't see something like this being added anytime soon, for the reasons I mentioned. It'd probably be best left to another module building on top of the sftp...

This is a bit late, but I honestly have not tested the UAC scenario (making outbound calls) as my primary use case for this was for UAS scenarios (receiving incoming...

I'm not sure this is the right approach. This PR seems to be passing a socket as "valid" _whenever_ an error occurs. Is the point to allow the Agent implementation...