Skip to content

Commit 6a55164

Browse files
authored
Rename startup telemetry property to lsStartup (microsoft#7829)
1 parent 221b8b3 commit 6a55164

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/activation/activationService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class LanguageServerExtensionActivationService implements IExtensionActiv
113113
await state.updateValue(jediEnabled);
114114
sendTelemetryEvent(EventName.PYTHON_LANGUAGE_SERVER_CURRENT_SELECTION, undefined, { switchTo: jediEnabled });
115115
} else {
116-
sendTelemetryEvent(EventName.PYTHON_LANGUAGE_SERVER_CURRENT_SELECTION, undefined, { startup: jediEnabled });
116+
sendTelemetryEvent(EventName.PYTHON_LANGUAGE_SERVER_CURRENT_SELECTION, undefined, { lsStartup: jediEnabled });
117117
}
118118
}
119119

src/client/telemetry/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ export interface IEventNamePropertyMapping {
10011001
/**
10021002
* The startup value of the language server setting
10031003
*/
1004-
startup?: boolean;
1004+
lsStartup?: boolean;
10051005
/**
10061006
* Used to track switch between LS and Jedi. Carries the final state after the switch.
10071007
*/

0 commit comments

Comments
 (0)