From 1c66499910f90f8af265c2af1c5e74486d2bd68e Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 7 Apr 2021 13:37:17 -0700 Subject: [PATCH] Fix event property name (#15026) --- src/sql/platform/telemetry/common/adsTelemetryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/platform/telemetry/common/adsTelemetryService.ts b/src/sql/platform/telemetry/common/adsTelemetryService.ts index ba04537418..9742590a7b 100644 --- a/src/sql/platform/telemetry/common/adsTelemetryService.ts +++ b/src/sql/platform/telemetry/common/adsTelemetryService.ts @@ -48,7 +48,7 @@ class TelemetryEventImpl implements ITelemetryEvent { assign(this._properties, { authenticationType: connectionInfo?.authenticationType, - providerName: connectionInfo?.providerName + provider: connectionInfo?.providerName }); return this; }