Merge pull request #139021 from microsoft/sandy081/sharedprocess-userdata-scheme

use user-data scheme for user data in shared process
This commit is contained in:
Sandeep Somavarapu
2021-12-15 13:38:44 +01:00
committed by GitHub
10 changed files with 46 additions and 17 deletions

View File

@@ -571,6 +571,7 @@ export class CodeApplication extends Disposable {
assertType(diskFileSystemProvider instanceof DiskFileSystemProvider);
const fileSystemProviderChannel = new DiskFileSystemProviderChannel(diskFileSystemProvider, this.logService);
mainProcessElectronServer.registerChannel('localFilesystem', fileSystemProviderChannel);
sharedProcessClient.then(client => client.registerChannel('localFilesystem', fileSystemProviderChannel));
// User Configuration File
const userConfigurationFileService = new UserConfigurationFileService(this.environmentMainService, this.fileService, this.logService);