lsp: Don't log oneshot channel errors from notify (#29857)

This is kind of noisy and not very informative.

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-05-05 08:21:45 -04:00 committed by GitHub
parent b404024c7a
commit c765da1c82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 14 deletions

View file

@ -278,7 +278,7 @@ impl RegisteredBuffer {
content_changes,
},
)
.log_err();
.ok();
}
let _ = done_tx.send((buffer.snapshot_version, buffer.snapshot.clone()));
Some(())
@ -732,7 +732,7 @@ impl Copilot {
},
},
)
.log_err();
.ok();
RegisteredBuffer {
uri,
@ -827,7 +827,7 @@ impl Copilot {
text_document: lsp::TextDocumentIdentifier::new(buffer.uri),
},
)
.log_err();
.ok();
}
}
}