mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-27 02:51:36 -05:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c9bef82ace | ||
|
|
d623768440 |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "azuredatastudio",
|
"name": "azuredatastudio",
|
||||||
"version": "1.12.1",
|
"version": "1.12.2",
|
||||||
"distro": "8c3e97e3425cc9814496472ab73e076de2ba99ee",
|
"distro": "8c3e97e3425cc9814496472ab73e076de2ba99ee",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Microsoft Corporation"
|
"name": "Microsoft Corporation"
|
||||||
|
|||||||
@@ -126,7 +126,8 @@ export class ExtensionHostProcessWorker implements IExtensionHostStarter {
|
|||||||
if (!this._messageProtocol) {
|
if (!this._messageProtocol) {
|
||||||
this._messageProtocol = Promise.all([
|
this._messageProtocol = Promise.all([
|
||||||
this._tryListenOnPipe(),
|
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 => {
|
]).then(data => {
|
||||||
const pipeName = data[0];
|
const pipeName = data[0];
|
||||||
const portData = data[1];
|
const portData = data[1];
|
||||||
|
|||||||
Reference in New Issue
Block a user