We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b87c06c commit 7f3010aCopy full SHA for 7f3010a
packages/debugger/src/robotcode/debugger/run.py
@@ -118,16 +118,17 @@ def start_debugpy(
118
global config_done_callback
119
120
def connect_debugpy(server: "DebugAdapterServer") -> None:
121
- server.protocol.send_event(
122
- Event(
123
- event="debugpyStarted",
124
- body={
125
- "port": port,
126
- "addresses": addresses,
127
- "processId": os.getpid(),
128
- },
+ if not os.environ.get("DEBUGPY_ADAPTER_ENDPOINTS", None):
+ server.protocol.send_event(
+ Event(
+ event="debugpyStarted",
+ body={
+ "port": port,
+ "addresses": addresses,
+ "processId": os.getpid(),
129
+ },
130
+ )
131
)
- )
132
133
if wait_for_debugpy_client:
134
app.verbose(f"Wait for debugpy incomming connections listening on {addresses}:{port}")
0 commit comments