From 83aa42ae6912113ea4a6b4694c4a69389cd138ed Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sun, 24 Apr 2022 13:39:33 +0100 Subject: [PATCH] minor: clarify error message Clarify that the server is a whole is OK, and that it's only a single requests that's dead --- crates/rust-analyzer/src/dispatch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rust-analyzer/src/dispatch.rs b/crates/rust-analyzer/src/dispatch.rs index 9f09af1ff7b4..d770325983aa 100644 --- a/crates/rust-analyzer/src/dispatch.rs +++ b/crates/rust-analyzer/src/dispatch.rs @@ -166,7 +166,7 @@ where match result { Ok(result) => result_to_response::(id, result), Err(panic) => { - let mut message = "server panicked".to_string(); + let mut message = "request handler panicked".to_string(); let panic_message = panic .downcast_ref::()