Skip to content

Commit 61bc2d5

Browse files
authored
Fix stop sending double telemetry for Terminal REPL (#23995)
Related: #23740
1 parent 460f623 commit 61bc2d5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/client/providers/replProvider.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import { Commands } from '../common/constants';
44
import { noop } from '../common/utils/misc';
55
import { IInterpreterService } from '../interpreter/contracts';
66
import { IServiceContainer } from '../ioc/types';
7-
import { captureTelemetry } from '../telemetry';
8-
import { EventName } from '../telemetry/constants';
97
import { ICodeExecutionService } from '../terminals/types';
108

119
export class ReplProvider implements Disposable {
@@ -28,7 +26,6 @@ export class ReplProvider implements Disposable {
2826
this.disposables.push(disposable);
2927
}
3028

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

0 commit comments

Comments
 (0)