lsp: Ignore payload of DidChangeConfiguration
dynamic registration (#23454)
Fixes #23430 Closes #23430 Release Notes: - N/A
This commit is contained in:
parent
c66f611037
commit
f0b5b0b4df
1 changed files with 3 additions and 0 deletions
|
@ -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:?}"),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue