Skip to content

Commit 26ee516

Browse files
committed
fix(debugger): (re)disable attachPython by default
1 parent 1cc6680 commit 26ee516

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@
565565
"robotcode.debug.attachPython": {
566566
"type": "boolean",
567567
"description": "Attach also the python debugger if a robot test starts.",
568-
"default": true,
568+
"default": false,
569569
"scope": "resource"
570570
},
571571
"robotcode.debug.outputMessages": {
@@ -893,7 +893,7 @@
893893
"attachPython": {
894894
"type": "boolean",
895895
"description": "Attach also the python debugger if a robot test starts.",
896-
"default": true
896+
"default": false
897897
},
898898
"attachPythonPort": {
899899
"type": "number",
@@ -990,7 +990,7 @@
990990
"attachPython": {
991991
"type": "boolean",
992992
"description": "Attach also the python debugger if a robot test starts.",
993-
"default": true
993+
"default": false
994994
},
995995
"attachPythonPort": {
996996
"type": "number",
@@ -1177,7 +1177,7 @@
11771177
"presentation": {
11781178
"hidden": true
11791179
},
1180-
"attachPython": true,
1180+
"attachPython": false,
11811181
"pythonConfiguration": "RobotCode: Python"
11821182
},
11831183
{

packages/debugger/src/robotcode/debugger/launcher/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ async def _launch(
152152
launcherTimeout: Optional[int] = None, # noqa: N803
153153
debuggerArgs: Optional[List[str]] = None, # noqa: N803
154154
debuggerTimeout: Optional[int] = None, # noqa: N803
155-
attachPython: Optional[bool] = True, # noqa: N803
155+
attachPython: Optional[bool] = False, # noqa: N803
156156
attachPythonPort: Optional[int] = None, # noqa: N803
157157
variables: Optional[Dict[str, Any]] = None,
158158
outputDir: Optional[str] = None, # noqa: N803

0 commit comments

Comments
 (0)