Skip to content

Commit

Permalink
Fix stop sending double telemetry for Terminal REPL (#23995)
Browse files Browse the repository at this point in the history
Related: #23740
  • Loading branch information
anthonykim1 authored Aug 26, 2024
1 parent 460f623 commit 61bc2d5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/client/providers/replProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { Commands } from '../common/constants';
import { noop } from '../common/utils/misc';
import { IInterpreterService } from '../interpreter/contracts';
import { IServiceContainer } from '../ioc/types';
import { captureTelemetry } from '../telemetry';
import { EventName } from '../telemetry/constants';
import { ICodeExecutionService } from '../terminals/types';

export class ReplProvider implements Disposable {
Expand All @@ -28,7 +26,6 @@ export class ReplProvider implements Disposable {
this.disposables.push(disposable);
}

@captureTelemetry(EventName.REPL, { replType: 'Terminal' })
private async commandHandler() {
const resource = this.activeResourceService.getActiveResource();
const interpreterService = this.serviceContainer.get<IInterpreterService>(IInterpreterService);
Expand Down

0 comments on commit 61bc2d5

Please sign in to comment.