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

Piotr Osiewicz created

Fixes #23430

Closes #23430

Release Notes:

- N/A

Change summary

crates/project/src/lsp_store.rs | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

crates/project/src/lsp_store.rs 🔗

@@ -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:?}"),
                             }
                         }