Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Ramos <lramos15@gmail.com>2022-11-11 21:07:49 +0300
committerGitHub <noreply@github.com>2022-11-11 21:07:49 +0300
commitdc790e935a093f7549052f4349e21f2ffdbeebe7 (patch)
tree6fb553260f412d549ad03f32b337d2dfc7fc00b4
parent431bec9f06dd8b6db30e495c703dcfc011c7f66f (diff)
Remove expired event (#166119)
-rw-r--r--src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
index c6a22cc1f1b..554cc3fc208 100644
--- a/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
+++ b/src/vs/workbench/contrib/extensions/electron-sandbox/extensionsAutoProfiler.ts
@@ -221,19 +221,6 @@ export class ExtensionsAutoProfiler implements IWorkbenchContribution {
}
this._blame.add(ExtensionIdentifier.toKey(extension.identifier));
- type UnresponsivePromptData = {
- id: string;
- };
- type UnresponsivePromptDataClassification = {
- owner: 'digitarald';
- comment: 'Users got a warning about an extension hanging the extension process';
- expiration: '1.73';
- id: { classification: 'SystemMetaData'; purpose: 'PerformanceAndHealth'; comment: 'Extension id that froze the extension process' };
- };
- this._telemetryService.publicLog2<UnresponsivePromptData, UnresponsivePromptDataClassification>('exthostunresponsiveprompt', {
- id: ExtensionIdentifier.toKey(extension.identifier),
- });
-
// user-facing message when very bad...
this._notificationService.prompt(
Severity.Warning,