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

@@ -51,7 +51,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<IExten
// initialize client last so we don't have features stuck behind it
const server = new KustoServer();
context.subscriptions.push(server);
// await server.start(appContext); // Commented out until we have Kusto binaries properly setup in Blob location.
await server.start(appContext); // Commented out until we have Kusto binaries properly setup in Blob location.
return createKustoApi(appContext);
}