mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
DAP: Add request ID to request timeout message (#6018)
This improves error logging for dap requests. Without the ID it's hard to know which request is the one that timed out.
This commit is contained in:
parent
78a1e2db60
commit
ce0837dbb7
2 changed files with 3 additions and 3 deletions
|
@ -254,7 +254,7 @@ impl Client {
|
|||
// TODO: specifiable timeout, delay other calls until initialize success
|
||||
timeout(Duration::from_secs(20), callback_rx.recv())
|
||||
.await
|
||||
.map_err(|_| Error::Timeout)? // return Timeout
|
||||
.map_err(|_| Error::Timeout(id))? // return Timeout
|
||||
.ok_or(Error::StreamClosed)?
|
||||
.map(|response| response.body.unwrap_or_default())
|
||||
// TODO: check response.success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue