mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 17:48:56 +01:00
Fixes #128528: Skip acquiring workspace storage locks on the local nodejs extension host
This commit is contained in:
@@ -22,6 +22,11 @@ export class ExtensionStoragePaths extends CommonExtensionStoragePaths {
|
||||
return workspaceStorageURI;
|
||||
}
|
||||
|
||||
if (this._environment.skipWorkspaceStorageLock) {
|
||||
this._logService.info(`Skipping acquiring lock for ${workspaceStorageURI.fsPath}.`);
|
||||
return workspaceStorageURI;
|
||||
}
|
||||
|
||||
const workspaceStorageBase = workspaceStorageURI.fsPath;
|
||||
let attempt = 0;
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user