Skip to content

Commit

Permalink
Update telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
rchiodo committed Jun 30, 2022
1 parent f98ba1f commit 12db879
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TELEMETRY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7181,8 +7181,8 @@ No description provided
[src/notebooks/controllers/commands/installPythonControllerCommands.ts](https://github.com/microsoft/vscode-jupyter/tree/main/src/notebooks/controllers/commands/installPythonControllerCommands.ts)
```typescript

if (this.extensionChecker.isPythonExtensionInstalled) {
// Make sure that we didn't timeout waiting for the hook
if (this.extensionChecker.isPythonExtensionInstalled && typeof hookResult !== 'number') {
traceInfo('Python Extension installed via Kernel Picker command');
sendTelemetryEvent(Telemetry.PythonExtensionInstalledViaKernelPicker, undefined, {
action: 'success'
Expand All @@ -7199,7 +7199,7 @@ No description provided
sendTelemetryEvent(Telemetry.PythonExtensionInstalledViaKernelPicker, undefined, {
action: 'failed'
});
throw new Error('Failed to install Python Extension via Kernel Picker command');
this.errorHandler
```
</details>
Expand Down

0 comments on commit 12db879

Please sign in to comment.