We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4cf282 commit 7c2b058Copy full SHA for 7c2b058
adapter/codelldb/src/terminal.rs
@@ -55,11 +55,7 @@ impl Terminal {
55
kind: Some(terminal_kind),
56
title: Some(title),
57
};
58
-
59
- tokio::spawn(async move {
60
- let response = dap_session.send_request(RequestArguments::runInTerminal(req_args));
61
- log_errors!(response.await);
62
- });
+ dap_session.send_request(RequestArguments::runInTerminal(req_args)).await?;
63
64
let (stream, _remote_addr) = accept_fut.await?;
65
let mut reader = BufReader::new(stream);
0 commit comments