Skip to content

Commit c1100ef

Browse files
committed
disable cached data for extensions #60168
1 parent 9e01742 commit c1100ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/services/extensions/electron-browser/extensionHost.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ export class ExtensionHostProcessWorker implements IExtensionHostStarter {
177177
VSCODE_IPC_HOOK_EXTHOST: pipeName,
178178
VSCODE_HANDLES_UNCAUGHT_ERRORS: true,
179179
VSCODE_LOG_STACK: !this._isExtensionDevTestFromCli && (this._isExtensionDevHost || !this._environmentService.isBuilt || product.quality !== 'stable' || this._environmentService.verbose),
180-
VSCODE_LOG_LEVEL: this._environmentService.verbose ? 'trace' : this._environmentService.log
180+
VSCODE_LOG_LEVEL: this._environmentService.verbose ? 'trace' : this._environmentService.log,
181+
VSCODE_NODE_CACHED_DATA_DIR: ''
181182
}),
182183
// We only detach the extension host on windows. Linux and Mac orphan by default
183184
// and detach under Linux and Mac create another process group.

0 commit comments

Comments
 (0)