Compare commits

...

2 Commits

Author SHA1 Message Date
Karl Burtram
c9bef82ace Disable automatically starting the EH in inspect mode 2019-10-10 20:30:45 -07:00
Karl Burtram
d623768440 Bump ADS to 1.12.2 2019-10-10 20:30:25 -07:00
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "azuredatastudio",
"version": "1.12.1",
"version": "1.12.2",
"distro": "8c3e97e3425cc9814496472ab73e076de2ba99ee",
"author": {
"name": "Microsoft Corporation"

View File

@@ -126,7 +126,8 @@ export class ExtensionHostProcessWorker implements IExtensionHostStarter {
if (!this._messageProtocol) {
this._messageProtocol = Promise.all([
this._tryListenOnPipe(),
!this._environmentService.args['disable-inspect'] ? this._tryFindDebugPort() : Promise.resolve(null)
//!this._environmentService.args['disable-inspect'] ? this._tryFindDebugPort() : Promise.resolve(null)
(this._environmentService.args['inspect-extensions'] || this._environmentService.args['inspect-brk-extensions']) ? this._tryFindDebugPort() : Promise.resolve(null)
]).then(data => {
const pipeName = data[0];
const portData = data[1];