Fix Kusto startup error (#12028)

Co-authored-by: Monica Gupta <mogupt@microsoft.com>
This commit is contained in:
Monica Gupta
2020-08-31 14:26:17 -07:00
committed by GitHub
parent f3befb0f4d
commit 81e81f1c49

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 // initialize client last so we don't have features stuck behind it
const server = new KustoServer(); const server = new KustoServer();
context.subscriptions.push(server); context.subscriptions.push(server);
await server.start(appContext); // await server.start(appContext); // Commented out until we have Kusto binaries properly setup in Blob location.
return createKustoApi(appContext); return createKustoApi(appContext);
} }