debuggers: Mark processId as optional field in Delve Attach configurations (#32856)

Closes #32849

Release Notes:

- Fixed overly strict validation of Go debugging configurations.
This commit is contained in:
Piotr Osiewicz
2025-06-17 11:18:37 +00:00
committed by GitHub
parent ed4b29f80c
commit 336c49b10d
+1 -1
View File
@@ -343,7 +343,7 @@ impl DebugAdapter for GoDebugAdapter {
},
{
"type": "object",
"required": ["processId", "mode"],
"required": ["mode"],
"properties": attach_properties
}
]