Skip to content

Commit 59f428c

Browse files
authored
🔨 disable a feature as a temporary workaround (#852)
Fixes #851
1 parent 8508425 commit 59f428c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/client/debugger/mainV2.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
'use strict';
55

6-
// tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires
6+
// tslint:disable:no-any max-func-body-length no-empty no-require-imports no-var-requires no-suspicious-comment
77

88
if ((Reflect as any).metadata === undefined) {
99
require('reflect-metadata');
@@ -64,11 +64,12 @@ export class PythonDebugger extends DebugSession {
6464
body.supportsSetVariable = true;
6565
body.supportsExceptionOptions = true;
6666
body.exceptionBreakpointFilters = [
67-
{
68-
filter: 'raised',
69-
label: 'Raised Exceptions',
70-
default: false
71-
},
67+
// TODO: Temporary workaround for PTVSD #85
68+
// {
69+
// filter: 'raised',
70+
// label: 'Raised Exceptions',
71+
// default: false
72+
// },
7273
{
7374
filter: 'uncaught',
7475
label: 'Uncaught Exceptions',

0 commit comments

Comments
 (0)