live-share icon indicating copy to clipboard operation
live-share copied to clipboard

When the host is debugging on the guest site the extension fails to open the source code file.

Open lieser opened this issue 2 years ago • 16 comments

Describe what happened:

When the host is debugging on the guest site the extension fails to open the source code file.

What was your system configuration? Product and Version [VS/VSCode]: VSCode 1.75.1 (both guest and host) OS Version[macOS/Windows]: guest Windows, host Windows but starting VS Code in the WSL 2 Live Share Extension Version: v1.0.5828 (both guest and host) Target Platform or Language: C++

Steps to Reproduce / Scenario:

  1. Host starts debugging code
  2. Host steps thought the code
  3. Instead of the code being opened on the guest site it shows the error Error: Unable to resolve filesystem provider with relative file path 'vsls:null'

Please attach logs to this issue:

Output Window:

2023-02-16 16:47:10.888 [error] Error: Unable to resolve filesystem provider with relative file path 'vsls:null'
    at l.j (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:616:11670)
    at l.k (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:616:11930)
    at l.readFileStream (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:616:16390)
    at m.H (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2324:34466)
    at m.readStream (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2324:34159)
    at m.readStream (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2324:42309)
    at Ps.Ab (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2315:54222)
    at Ps.wb (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2315:52790)
    at async l.P (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2324:30505)
    at async $l.db (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:1936:9908)
    at async f.setInput (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2302:87854)
    at async r.M (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2300:23027)
    at async r.D (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2300:21622)
    at async r.openEditor (vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2300:20488)
    at async vscode-file://vscode-app/c:/Program%20Files/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2487:13441

Screenshots image

lieser avatar Feb 16 '23 16:02 lieser

I am suffering from this issue too, in my case the target language is Python, guest: Ubuntu, and host: Windows using WSL2.

We are unable to repro this issue. We will keep the issue open for more feedback from users but we won't be able to prioritize this issue at the moment.

nandiniYeltiwar avatar Mar 31 '23 16:03 nandiniYeltiwar

We are also seeing this issue trying to debug a Django unit test. Host on Windows using WSL2, guest macOS 13.1.

image

JLee35 avatar Apr 07 '23 17:04 JLee35

This is occurring for two of us on my team as well, with the host on a Mac with a silicone chip and both guests getting the error on Mac intel chip systems. We are attempting to use it for Python. We are able to see the breakpoints and variables in the stack but not the debug console.

DylanWS avatar May 11 '23 15:05 DylanWS

We're unable to prioritize a fix for this currently, but we will re-evaluate in the next quarter.

nandiniYeltiwar avatar May 11 '23 15:05 nandiniYeltiwar

Just noting that I get the same issue in a simple (Hello World) Java app when using liveshare from a github codespace.

Host machine: macbook pro / m1 chip Guest machine: macbook pro / m1 chip

In my case the following steps apply:

  • host can run and debug the hello world service in the code space (in the browser)
  • start the live share session
  • send the invite link to a guest
  • guest joins in the browser (either anonymous or not)
  • puts a break point into a class
  • runs the project
  • breakpoint is hit on the host side and control pauses on both host and guest sides
  • host sees code / breakpoint correctly
  • guest sees the following message in the code window: "The editor could not be opened due to an unexpected error: Unable to resolve the filesystem provider with relative file path 'vsls:null'"

Extensions:

  • Extension Pack for Java v0.25.11
  • Live Share v1.0.5873

In my case I have two simple java files in the project:

HelloWorldApp.java

class HelloWorldApp {
    public static void main(String[] args) {        
        String message = SomeService.GetMessage();
        System.out.println(message);
    }
}

SomeService.java

public class SomeService {
    public static String GetMessage() {
        return "Hello world";
    }
}

I've seen the same error (or version of) in every other codespace I run liveshare in - more complex java projects, node.js, etc

paul-newman-and-digital avatar Jun 27 '23 08:06 paul-newman-and-digital

Sorry - tagging this from my proper github account and also commenting that I don't get the above behaviour when I run live share from my local machine to a browser window. This only happens when I'm running live shared from VS code in a github codespace to another browser window (if that helps!)

paul-newman-iaggbs avatar Jul 07 '23 11:07 paul-newman-iaggbs

I have encountered this issues several times and across several versions of vscode and live share plugin since June 2023, and on different machines.

Basically there is no issue when I use only two machines to do the live share. The problem occurs when I first use Machine 1 to ssh to a server, and then initialize a live share to another machine 2. When debugging remotely from Machine 1, Machine 2 can see the variables when it comes to a breakpoint, while the Error: Unable to resolve filesystem provider with relative file path 'vsls:null' error page suddenly appears.

Here are the information for reproduction:

Describe what happened:

When the host is debugging and hit the breakpoint, on the guest site the extension fails to open the source code file and display the breakpoint.

What was your system configuration? Product and Version [VS/VSCode]: VSCode 1.83.0 (both guest and host) OS Version[macOS/Windows]: Machine 1 & 2 MacOS 14.0, Server Ubuntu 22.04 Live Share Extension Version: v1.0.5883 Target Platform or Language: Python

Steps to Reproduce / Scenario: Machine 1 connects to Server and starts live share Machine 2 joins live share Machine 1 accept Machine 2 as Read/Write Machine 1 sets a breakpoint and starts debugging code Instead of the code being opened on the Machine 2, it shows the error Error: Unable to resolve filesystem provider with relative file path 'vsls:null'

Please attach logs to this issue: Output Window:

2023-10-10 15:16:38.791 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:38.799 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:41.652 [info] [perf] Render performance baseline is 14ms
2023-10-10 15:16:46.050 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:46.050 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:46.427 [info] Invoking resolveAuthority(ssh-remote)...
2023-10-10 15:16:46.427 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][0ms] obtaining proxy...
2023-10-10 15:16:46.427 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][0ms] invoking...
2023-10-10 15:16:47.431 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][1003ms] waiting...
2023-10-10 15:16:48.431 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][2003ms] waiting...
2023-10-10 15:16:49.431 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][3004ms] waiting...
2023-10-10 15:16:50.430 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][4003ms] waiting...
2023-10-10 15:16:51.430 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][5002ms] waiting...
2023-10-10 15:16:52.428 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][6001ms] waiting...
2023-10-10 15:16:53.429 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][7001ms] waiting...
2023-10-10 15:16:54.429 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][8001ms] waiting...
2023-10-10 15:16:55.428 [info] [LocalProcess0][resolveAuthority(ssh-remote,1)][9001ms] waiting...
2023-10-10 15:16:56.237 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:56.237 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:16:58.031 [error] [Extension Host] (node:56333) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Plugin) --trace-deprecation ...` to show where the warning was created)
2023-10-10 15:16:58.890 [info] [perf] Render performance baseline is 14ms
2023-10-10 15:17:03.111 [warning] Ignoring the error while validating workspace folder vsls:/ - ENOPRO: No file system provider found for resource 'vsls:/'
2023-10-10 15:17:03.112 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:17:03.112 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:17:03.566 [error] [Extension Host] (node:56341) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Plugin) --trace-deprecation ...` to show where the warning was created)
2023-10-10 15:17:12.437 [info] [perf] Render performance baseline is 15ms
2023-10-10 15:36:05.881 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:36:05.882 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:36:07.290 [error] [Extension Host] (node:56910) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Plugin) --trace-deprecation ...` to show where the warning was created)
2023-10-10 15:36:08.567 [info] [perf] Render performance baseline is 15ms
2023-10-10 15:36:15.018 [warning] Ignoring the error while validating workspace folder vsls:/ - ENOPRO: No file system provider found for resource 'vsls:/'
2023-10-10 15:36:15.019 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'ms-dotnettools.dotnet-interactive-vscode' wants API proposal 'languageConfigurationAutoClosingPairs' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:36:15.019 [warning] Via 'product.json#extensionEnabledApiProposals' extension 'github.copilot-chat' wants API proposal 'terminalContextMenu' but that proposal DOES NOT EXIST. Likely, the proposal has been finalized (check 'vscode.d.ts') or was abandoned.
2023-10-10 15:36:15.414 [error] [Extension Host] (node:56923) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `Code Helper (Plugin) --trace-deprecation ...` to show where the warning was created)
2023-10-10 15:36:17.762 [info] [perf] Render performance baseline is 14ms
2023-10-10 15:37:10.143 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:31.384 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:31.985 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:33.353 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:33.388 [error] Invalid debug adapter: Error: Invalid debug adapter
    at v.m (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1543:95)
    at v.$acceptDAMessage (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1542:7559)
    at m.S (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1551:18856)
    at m.Q (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1551:18622)
    at m.M (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1551:17715)
    at m.L (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1551:16794)
    at u.value (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1551:15597)
    at c.z (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:1902)
    at c.fire (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:87:2119)
    at r.fire (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:616:14393)
    at Y.onmessage (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1652:1077)
2023-10-10 15:37:33.418 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:33.431 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:33.563 [error] [Extension Host] TypeError: Cannot read properties of undefined (reading 'type')
	at JoinDebugSession.onDebugEvent (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:853288)
	at CallbackList.invoke (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1646366)
	at Emitter.fire (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1647119)
	at /Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1196155
	at handleNotification (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657104)
	at processMessageQueue (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1657360)
	at Immediate._onImmediate (/Users/yaya/.vscode/extensions/ms-vsliveshare.vsliveshare-1.0.5883/extension.js:394:1659011)
	at process.processImmediate (node:internal/timers:476:21)
2023-10-10 15:37:34.953 [error] Error: Unable to resolve filesystem provider with relative file path 'vsls:null'
    at r.j (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:645:11268)
    at r.m (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:645:11499)
    at r.readFileStream (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:645:15872)
    at b.M (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2349:40512)
    at b.readStream (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2349:40267)
    at b.readStream (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2349:47339)
    at L.Cb (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2338:29203)
    at L.yb (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2338:27813)
    at async L.resolve (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2338:27636)
    at async r.W (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2349:36649)
    at async n.gb (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1888:8969)
    at async M.setInput (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2327:21044)
    at async n.R (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2325:22000)
    at async n.J (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2325:20668)
    at async n.openEditor (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2325:19656)
    at async vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2514:21238
    at async te.focusStackFrame (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1887:74658)
    at async U (vscode-file://vscode-app/Applications/Visual%20Studio%20Code.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:1885:19631)

wenqihuang avatar Oct 10 '23 13:10 wenqihuang

Same problem here: Two machine running WIndows 11 the code is running on WSL

corradocavalli avatar Mar 06 '24 16:03 corradocavalli

I'm also seeing this issue when using a host with devcontainers from WSL/Windows 11 and the collaborator on windows 11

EliiseS avatar Mar 06 '24 17:03 EliiseS

I am suffering from this issue too. And it was working few weeks back

LeeShyanYeong avatar Mar 22 '24 08:03 LeeShyanYeong

I am seeing this issue as well.

justin6case avatar May 03 '24 03:05 justin6case

me, too

sevenactors avatar Jun 02 '24 08:06 sevenactors

hi, any update with this issue?

benbudt avatar Jul 22 '24 17:07 benbudt