mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Updating config to point to latest service layer (#12058)
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user