File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/workbench/services/extensions/electron-browser Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ export class ExtensionHostProcessWorker implements IExtensionHostStarter {
127127 if ( ! this . _messageProtocol ) {
128128 this . _messageProtocol = Promise . all ( [
129129 this . _tryListenOnPipe ( ) ,
130- ! this . _environmentService . args [ 'disable-inspect' ] ? this . _tryFindDebugPort ( ) : Promise . resolve ( null )
130+ // !this._environmentService.args['disable-inspect'] ? this._tryFindDebugPort() : Promise.resolve(null)
131+ ( this . _environmentService . args [ 'inspect-extensions' ] || this . _environmentService . args [ 'inspect-brk-extensions' ] ) ? this . _tryFindDebugPort ( ) : Promise . resolve ( null )
131132 ] ) . then ( data => {
132133 const pipeName = data [ 0 ] ;
133134 const portData = data [ 1 ] ;
You can’t perform that action at this time.
0 commit comments