Debugger: Add pretty printers for Cargo-located tasks (#27979)
Closes #ISSUE Release Notes: - N/A
This commit is contained in:
parent
501b539286
commit
ee950f5bc4
3 changed files with 43 additions and 4 deletions
|
@ -358,7 +358,14 @@ impl DapStore {
|
|||
|
||||
let task = cx.spawn(async move |this, cx| {
|
||||
if config.locator.is_some() {
|
||||
locator_store.resolve_debug_config(&mut config).await?;
|
||||
config = cx
|
||||
.background_spawn(async move {
|
||||
locator_store
|
||||
.resolve_debug_config(&mut config)
|
||||
.await
|
||||
.map(|_| config)
|
||||
})
|
||||
.await?;
|
||||
}
|
||||
|
||||
let start_client_task = this.update(cx, |this, cx| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue