SchoofsKelvin / vscode-sshfs

Extension for Visual Studio Code: File system provider using SSH
GNU General Public License v3.0
546 stars 36 forks source link

Enable pagent doesn't work #202

Closed ahkhystrix closed 4 years ago

ahkhystrix commented 4 years ago

VS Code: 1.46.0 SSH FS: 1.17.0

  1. If I turn on the pageant, then it doesn’t work: "Error while connecting to SSH FS myname: All configured authentication methods failed"

  2. I see settings.json:

"sshfs.configs": [
    {
      "agent": true,
      "host": "myhost",
      "name": "myname",
      "username": "mylogin"
    }
  ],
  1. I change the value of the option agent to pageant:
  "sshfs.configs": [
    {
      "agent": "pageant",
      "host": "myhost",
      "name": "myname",
      "username": "myuser"
    }
  ],
  1. Everything is working
SchoofsKelvin commented 4 years ago

This seems to be a bug in the Settings UI. Instead of writing "pageant" when pageant is selected, it writes true instead.

Fixed in 26abb22, will be available in the next version after 1.17.0.