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 13:18:37 +02:00 committed by GitHub
parent ed4b29f80c
commit 336c49b10d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -343,7 +343,7 @@ impl DebugAdapter for GoDebugAdapter {
},
{
"type": "object",
"required": ["processId", "mode"],
"required": ["mode"],
"properties": attach_properties
}
]