diff options
| author | bors <bors@rust-lang.org> | 2022-04-24 12:41:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-04-24 12:41:16 +0000 |
| commit | b5d7a712e1c5d1e602feb8320f902ee9cd6ec197 (patch) | |
| tree | 9cf294835eca0fdb25e0e2cb19aeb1b4620c03e8 | |
| parent | c61bb6be8c3f45c15a24a26413a665c6c8f63f5c (diff) | |
| parent | 83aa42ae6912113ea4a6b4694c4a69389cd138ed (diff) | |
| download | rust-b5d7a712e1c5d1e602feb8320f902ee9cd6ec197.tar.gz rust-b5d7a712e1c5d1e602feb8320f902ee9cd6ec197.zip | |
Auto merge of #12070 - rust-lang:message, r=matklad
minor: clarify error message Clarify that the server is a whole is OK, and that it's only a single requests that's dead
| -rw-r--r-- | crates/rust-analyzer/src/dispatch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/dispatch.rs b/crates/rust-analyzer/src/dispatch.rs index 9f09af1ff7b..d770325983a 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::<R>(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::<String>() |
