add a false output channel to the other place we create a client (#720)

This commit is contained in:
Anthony Dresser
2018-02-16 13:04:41 -08:00
committed by Karl Burtram
parent d1cc937f9d
commit cea52d2314
4 changed files with 19 additions and 12 deletions

View File

@@ -411,7 +411,22 @@ export class SqlToolsServiceClient {
configurationSection: SqlToolsServiceClient._constants.extensionConfigSectionName
},
errorHandler: new LanguageClientErrorHandler(SqlToolsServiceClient._constants),
serverConnectionMetadata: this._config.getConfigValue(Constants.serverConnectionMetadata)
serverConnectionMetadata: this._config.getConfigValue(Constants.serverConnectionMetadata),
outputChannel: {
append: () => {
},
appendLine: () => {
},
dispose: () => {
},
clear: () => {
},
hide: () => {
},
name: '',
show: () => {
}
}
};
this._serviceStatus.showServiceLoading();

View File

@@ -337,7 +337,7 @@ dashdash@^1.12.0:
dependencies:
assert-plus "^1.0.0"
"dataprotocol-client@file:./../dataprotocol-client":
"dataprotocol-client@file:../dataprotocol-client":
version "1.0.0"
dependencies:
typescript "2.6.2"