Updating config to point to latest service layer (#12058)

This commit is contained in:
Jorge Berumen
2020-09-01 17:10:06 -07:00
committed by GitHub
parent 5d4afae616
commit 7b099e703a
3 changed files with 14 additions and 15 deletions

View File

@@ -29,8 +29,7 @@ export class KustoServer {
public async start(context: AppContext): Promise<SqlOpsDataClient> {
try {
const installationStart = Date.now();
const path = await this.download(context); // TodoKusto: Remove this commented line once the Kusto service layer has been published to Github. Until then copy manually for debugging.
// const path = "e:\\repos\\azuredatastudio\\extensions\\kusto\\sqltoolsservice\\Windows\\2.0.0-release.15\\MicrosoftKustoServiceLayer.exe";
const path = await this.download(context);
const installationComplete = Date.now();
let serverOptions = generateServerOptions(context.extensionContext.logPath, path);
let clientOptions = getClientOptions(context);