liximomo / vscode-sftp

Super fast sftp/ftp extension for VS Code
MIT License
1.5k stars 256 forks source link

Cannot open ipynb file in Notebook Editor #1008

Open tdomanski opened 1 year ago

tdomanski commented 1 year ago

Environment:

Steps to reproduce:

  1. Follow all of the steps from "Usage" instruction.
  2. Open the .ipynb file
  3. Click "Open in Notebook Editor" button
  4. Error given below pops up:

    No file system provider found for resource 'remote://HOST:PORT/~%20Notebook%20name.ipynb?remoteId%3D1%26fsPath%3DC%253A%252FUsers%252Ftdomanski%252FDesktop%252FNotebook%2520name.ipynb'

Debug info with ommited handshakes:

[09-11 21:54:44] [debug] register command "Cancel All Transfer" from "./commandCancelAllTransfer.ts" [09-11 21:54:44] [debug] register command "Config" from "./commandConfig.ts" [09-11 21:54:44] [debug] register command "List Active Folder" from "./commandListActiveFolder.ts" [09-11 21:54:44] [debug] register command "Open Ssh Connection" from "./commandOpenSshConnection.ts" [09-11 21:54:44] [debug] register command "Set Profile" from "./commandSetProfile.ts" [09-11 21:54:44] [debug] register command "Toggle Output Panel" from "./commandToggleOutputPanel.ts" [09-11 21:54:44] [debug] register command "Upload Changed Files" from "./commandUploadChangedFiles.ts" [09-11 21:54:44] [debug] register command "Create File" from "./fileCommandCreateFile.ts" [09-11 21:54:44] [debug] register command "Create Folder" from "./fileCommandCreateFolder.ts" [09-11 21:54:44] [debug] register command "Delete Remote" from "./fileCommandDeleteRemote.ts" [09-11 21:54:44] [debug] register command "Diff" from "./fileCommandDiff.ts" [09-11 21:54:44] [debug] register command "Diff Active File" from "./fileCommandDiffActiveFile.ts" [09-11 21:54:44] [debug] register command "Download" from "./fileCommandDownload.ts" [09-11 21:54:44] [debug] register command "Download Active File" from "./fileCommandDownloadActiveFile.ts" [09-11 21:54:44] [debug] register command "Download Active Folder" from "./fileCommandDownloadActiveFolder.ts" [09-11 21:54:44] [debug] register command "Download File" from "./fileCommandDownloadFile.ts" [09-11 21:54:44] [debug] register command "Download Folder" from "./fileCommandDownloadFolder.ts" [09-11 21:54:44] [debug] register command "Download Force" from "./fileCommandDownloadForce.ts" [09-11 21:54:44] [debug] register command "Download Project" from "./fileCommandDownloadProject.ts" [09-11 21:54:44] [debug] register command "Edit In Local" from "./fileCommandEditInLocal.ts" [09-11 21:54:44] [debug] register command "List" from "./fileCommandList.ts" [09-11 21:54:44] [debug] register command "List All" from "./fileCommandListAll.ts" [09-11 21:54:44] [debug] register command "Reveal In Explorer" from "./fileCommandRevealInExplorer.ts" [09-11 21:54:44] [debug] register command "Reveal In Remote Explorer" from "./fileCommandRevealInRemoteExplorer.ts" [09-11 21:54:44] [debug] register command "Sync Both Directions" from "./fileCommandSyncBothDirections.ts" [09-11 21:54:44] [debug] register command "Sync Local To Remote" from "./fileCommandSyncLocalToRemote.ts" [09-11 21:54:44] [debug] register command "Sync Remote To Local" from "./fileCommandSyncRemoteToLocal.ts" [09-11 21:54:44] [debug] register command "Upload" from "./fileCommandUpload.ts" [09-11 21:54:44] [debug] register command "Upload Active File" from "./fileCommandUploadActiveFile.ts" [09-11 21:54:44] [debug] register command "Upload Active Folder" from "./fileCommandUploadActiveFolder.ts" [09-11 21:54:44] [debug] register command "Upload File" from "./fileCommandUploadFile.ts" [09-11 21:54:44] [debug] register command "Upload Folder" from "./fileCommandUploadFolder.ts" [09-11 21:54:44] [debug] register command "Upload Force" from "./fileCommandUploadForce.ts" [09-11 21:54:44] [debug] register command "Upload Project" from "./fileCommandUploadProject.ts" [09-11 21:54:44] [info] config at c:\Users\tdomanski\Desktop\Folder {"remotePath":"C:/Users/tdomanski","uploadOnSave":true,"useTempFile":false,"openSsh":false,"downloadOnOpen":false,"ignore":[],"concurrency":4,"protocol":"sftp","connectTimeout":10000,"interactiveAuth":false,"secure":false,"remoteTimeOffsetInHours":0,"name":"NAME","host":"HOST","port":PORT,"username":"**"} [09-11 21:54:56] [debug] Custom crypto binding not available [09-11 21:54:56] [debug] Local ident: 'SSH-2.0-ssh2js1.5.0' [09-11 21:54:56] [debug] Client: Trying HOSTNAME on port PORT ... [09-11 21:54:56] [debug] Socket connected [09-11 21:54:56] [debug] Remote ident: 'SSH-2.0-OpenSSH_for_Windows_7.7' [09-11 21:54:56] [debug] Outbound: Sending KEXINIT [09-11 21:54:56] [debug] Inbound: Handshake in progress ... [Handshakes] ... [09-11 21:54:56] [debug] Host accepted by default (no verification) [09-11 21:54:56] [debug] Host accepted (verified) [09-11 21:55:05] [debug] Outbound: Sending NEWKEYS [09-11 21:55:05] [debug] Inbound: NEWKEYS [09-11 21:55:05] [debug] Verifying signature ... [09-11 21:55:05] [debug] Verified signature [09-11 21:55:05] [debug] Handshake completed [09-11 21:55:05] [debug] Outbound: Sending SERVICE_REQUEST (ssh-userauth) [09-11 21:55:05] [debug] Inbound: Received SERVICE_ACCEPT (ssh-userauth) [09-11 21:55:05] [debug] Outbound: Sending USERAUTH_REQUEST (none) [09-11 21:55:05] [debug] Inbound: Received USERAUTH_FAILURE (publickey,password,keyboard-interactive) [09-11 21:55:05] [debug] Client: none auth failed [09-11 21:55:05] [debug] Outbound: Sending USERAUTH_REQUEST (password) [09-11 21:55:05] [debug] Inbound: Received USERAUTH_SUCCESS [09-11 21:55:05] [debug] Outbound: Sending CHANNEL_OPEN (r:0, session) [09-11 21:55:05] [debug] Inbound: GLOBAL_REQUEST (hostkeys-00@openssh.com) [09-11 21:55:06] [debug] Inbound: CHANNEL_OPEN_CONFIRMATION (r:0, s:0) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_REQUEST (r:0, subsystem: sftp) [09-11 21:55:06] [debug] Inbound: CHANNEL_WINDOW_ADJUST (r:0, 2097152) [09-11 21:55:06] [debug] Inbound: CHANNEL_SUCCESS (r:0) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 9) [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 154) [09-11 21:55:06] [debug] SFTP: Inbound: Received VERSION (v3, exts:posix-rename@openssh.com,statvfs@openssh.com,fstatvfs@openssh.com,hardlink@openssh.com,fsync@openssh.com) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 31) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered OPENDIR [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 31) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered OPENDIR [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Inbound: Received HANDLE (id:0) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Inbound: Received HANDLE (id:1) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 6577) [09-11 21:55:06] [debug] SFTP: Inbound: Received NAME (id:2, 50) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 6577) [09-11 21:55:06] [debug] SFTP: Inbound: Received NAME (id:3, 50) [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 32) [09-11 21:55:06] [debug] SFTP: Inbound: Received STATUS (id:4, 1, "End of file") [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered CLOSE [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 32) [09-11 21:55:06] [debug] SFTP: Inbound: Received STATUS (id:5, 1, "End of file") [09-11 21:55:06] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:06] [debug] SFTP: Outbound: Buffered CLOSE [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 28) [09-11 21:55:06] [debug] SFTP: Inbound: Received STATUS (id:6, 0, "Success") [09-11 21:55:06] [debug] Inbound: CHANNEL_DATA (r:0, 28) [09-11 21:55:06] [debug] SFTP: Inbound: Received STATUS (id:7, 0, "Success") [09-11 21:55:15] [debug] Outbound: Sending CHANNEL_DATA (r:0, 39) [09-11 21:55:15] [debug] SFTP: Outbound: Buffered OPENDIR [09-11 21:55:15] [debug] Inbound: CHANNEL_DATA (r:0, 17) [09-11 21:55:15] [debug] SFTP: Inbound: Received HANDLE (id:8) [09-11 21:55:15] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:15] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:15] [debug] Inbound: CHANNEL_DATA (r:0, 1116) [09-11 21:55:15] [debug] SFTP: Inbound: Received NAME (id:9, 9) [09-11 21:55:15] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:15] [debug] SFTP: Outbound: Buffered READDIR [09-11 21:55:15] [debug] Inbound: CHANNEL_DATA (r:0, 32) [09-11 21:55:15] [debug] SFTP: Inbound: Received STATUS (id:10, 1, "End of file") [09-11 21:55:15] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:15] [debug] SFTP: Outbound: Buffered CLOSE [09-11 21:55:15] [debug] Inbound: CHANNEL_DATA (r:0, 28) [09-11 21:55:15] [debug] SFTP: Inbound: Received STATUS (id:11, 0, "Success") [09-11 21:55:17] [debug] Outbound: Sending CHANNEL_DATA (r:0, 78) [09-11 21:55:17] [debug] SFTP: Outbound: Buffered OPEN [09-11 21:55:17] [debug] Inbound: CHANNEL_DATA (r:0, 17) [09-11 21:55:17] [debug] SFTP: Inbound: Received HANDLE (id:12) [09-11 21:55:17] [debug] Outbound: Sending CHANNEL_DATA (r:0, 29) [09-11 21:55:17] [debug] SFTP: Outbound: Buffered READ [09-11 21:55:17] [debug] Inbound: CHANNEL_DATA (r:0, 11381) [09-11 21:55:17] [debug] SFTP: Inbound: Received DATA (id:13, 11368) [09-11 21:55:17] [debug] Outbound: Sending CHANNEL_DATA (r:0, 29) [09-11 21:55:17] [debug] SFTP: Outbound: Buffered READ [09-11 21:55:17] [debug] Inbound: CHANNEL_DATA (r:0, 32) [09-11 21:55:17] [debug] SFTP: Inbound: Received STATUS (id:14, 1, "End of file") [09-11 21:55:17] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 21:55:17] [debug] SFTP: Outbound: Buffered CLOSE [09-11 21:55:17] [debug] Inbound: CHANNEL_DATA (r:0, 28) [09-11 21:55:17] [debug] SFTP: Inbound: Received STATUS (id:15, 0, "Success") [09-11 21:55:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:55:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:56:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:56:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:56:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:56:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:57:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:57:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:57:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:57:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:58:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:58:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:58:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:58:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:59:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:59:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 21:59:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 21:59:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:00:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:00:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:00:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:00:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:01:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:01:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:01:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:01:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:02:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:02:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:02:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:02:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:03:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:03:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:03:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:03:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:04:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:04:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:04:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:04:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:05:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:05:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:05:09] [debug] Outbound: Sending CHANNEL_DATA (r:0, 78) [09-11 22:05:09] [debug] SFTP: Outbound: Buffered OPEN [09-11 22:05:09] [debug] Inbound: CHANNEL_DATA (r:0, 17) [09-11 22:05:09] [debug] SFTP: Inbound: Received HANDLE (id:16) [09-11 22:05:09] [debug] Outbound: Sending CHANNEL_DATA (r:0, 29) [09-11 22:05:09] [debug] SFTP: Outbound: Buffered READ [09-11 22:05:09] [debug] Inbound: CHANNEL_DATA (r:0, 11381) [09-11 22:05:09] [debug] SFTP: Inbound: Received DATA (id:17, 11368) [09-11 22:05:09] [debug] Outbound: Sending CHANNEL_DATA (r:0, 29) [09-11 22:05:09] [debug] SFTP: Outbound: Buffered READ [09-11 22:05:09] [debug] Inbound: CHANNEL_DATA (r:0, 32) [09-11 22:05:09] [debug] SFTP: Inbound: Received STATUS (id:18, 1, "End of file") [09-11 22:05:09] [debug] Outbound: Sending CHANNEL_DATA (r:0, 17) [09-11 22:05:09] [debug] SFTP: Outbound: Buffered CLOSE [09-11 22:05:09] [debug] Inbound: CHANNEL_DATA (r:0, 28) [09-11 22:05:09] [debug] SFTP: Inbound: Received STATUS (id:19, 0, "Success") [09-11 22:05:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:05:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:06:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:06:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:06:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:06:36] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:07:06] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:07:06] [debug] Inbound: Received REQUEST_FAILURE [09-11 22:07:36] [debug] Outbound: Sending ping (GLOBAL_REQUEST: keepalive@openssh.com) [09-11 22:07:36] [debug] Inbound: Received REQUEST_FAILURE