mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-29 16:20:29 -04:00
Extension telemetry feature cleanup (#21779)
* Extension telemetry feature cleanup * one more
This commit is contained in:
@@ -19,6 +19,7 @@ import { KustoIconProvider } from './iconProvider';
|
||||
import { createKustoApi } from './kustoApiFactory';
|
||||
import { KustoServer } from './kustoServer';
|
||||
import { promises as fs } from 'fs';
|
||||
import { TelemetryReporter } from './telemetry';
|
||||
|
||||
const localize = nls.loadMessageBundle();
|
||||
|
||||
@@ -53,8 +54,8 @@ 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);
|
||||
context.subscriptions.push(TelemetryReporter);
|
||||
return createKustoApi(appContext);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user