lsp: Ignore payload of DidChangeConfiguration dynamic registration (#23454)

Fixes #23430

Closes #23430

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-01-22 11:23:42 +01:00 committed by GitHub
parent c66f611037
commit f0b5b0b4df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -699,6 +699,9 @@ impl LocalLspStore {
anyhow::Ok(())
})??;
}
"workspace/didChangeConfiguration" => {
// Ignore payload since we notify clients of setting changes unconditionally, relying on them pulling the latest settings.
}
_ => log::warn!("unhandled capability registration: {reg:?}"),
}
}