aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-08-21 15:31:35 +0100
committerGitHub <[email protected]>2019-08-21 15:31:35 +0100
commit5fd9a5be0984faa138281e46dd4b73cfdad073b1 (patch)
tree5f108ba6ce0f81dca73f7d22239da8a0fab2f7e9 /crates/ra_lsp_server/src/main_loop.rs
parent8521f0456f442eff2d7010f055d98147874a5413 (diff)
parent6ab85cc192dc32ee29ef7a0ba972b473f0133102 (diff)
Merge #1712
1712: fix default for the exlude key r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop.rs')
-rw-r--r--crates/ra_lsp_server/src/main_loop.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs
index 3ee0ad652..fcb782386 100644
--- a/crates/ra_lsp_server/src/main_loop.rs
+++ b/crates/ra_lsp_server/src/main_loop.rs
@@ -586,6 +586,7 @@ fn update_file_notifications_on_threadpool(
586 sender: Sender<Task>, 586 sender: Sender<Task>,
587 subscriptions: Vec<FileId>, 587 subscriptions: Vec<FileId>,
588) { 588) {
589 log::trace!("updating notifications for {:?}", subscriptions);
589 pool.execute(move || { 590 pool.execute(move || {
590 for file_id in subscriptions { 591 for file_id in subscriptions {
591 match handlers::publish_diagnostics(&world, file_id) { 592 match handlers::publish_diagnostics(&world, file_id) {