-
Notifications
You must be signed in to change notification settings - Fork 381
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
sftp.NewClient returns "EOF" error #506
Comments
Could you maybe share the whole of your function(s)? And encase it in a triple-backtick code block? There is not really enough information here to diagnose what might be going on. |
My problem was the section But to be honest, the error
|
Hm… yeah, we could probably do something there, but there’s not much to diagnose at that point. If we get an EOF there, then we’re stuck in an unrecoverable state. However, we could use |
Yea, and maybe we should add some comments if someone has the same problem. Hope this help someone. |
I create sshClient like this:
if sshClient, err = ssh.Dial("tcp", addr, clientConfig); err != nil {
return nil, err
}; and sshClient is created successfully, after that create sftp client like this:
if sftpClient, err = sftp.NewClient(sshClient); err != nil {
return nil, err
} here I get an error "EOF"
Please help this, where is a problam?
The text was updated successfully, but these errors were encountered: