mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
Merge branch 'fix-0.3.4' into 'main'
Fix 0.3.4 See merge request veilid/veilid!304
This commit is contained in:
commit
2120278f40
@ -54,8 +54,11 @@ cfg_if! {
|
|||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(feature="rt-async-std")] {
|
if #[cfg(feature="rt-async-std")] {
|
||||||
MustJoinHandle::new(async_std::task::Builder::new().name(name.to_string()).spawn(future).unwrap())
|
MustJoinHandle::new(async_std::task::Builder::new().name(name.to_string()).spawn(future).unwrap())
|
||||||
} else if #[cfg(feature="rt-tokio")] {
|
} else if #[cfg(all(feature="rt-tokio", feature="tracing"))] {
|
||||||
MustJoinHandle::new(tokio::task::Builder::new().name(name).spawn(future).unwrap())
|
MustJoinHandle::new(tokio::task::Builder::new().name(name).spawn(future).unwrap())
|
||||||
|
} else if #[cfg(feature="rt-tokio")] {
|
||||||
|
let _name = name;
|
||||||
|
MustJoinHandle::new(tokio::task::spawn(future))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -67,8 +70,11 @@ cfg_if! {
|
|||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(feature="rt-async-std")] {
|
if #[cfg(feature="rt-async-std")] {
|
||||||
MustJoinHandle::new(async_std::task::Builder::new().name(name.to_string()).local(future).unwrap())
|
MustJoinHandle::new(async_std::task::Builder::new().name(name.to_string()).local(future).unwrap())
|
||||||
} else if #[cfg(feature="rt-tokio")] {
|
} else if #[cfg(all(feature="rt-tokio", feature="tracing"))] {
|
||||||
MustJoinHandle::new(tokio::task::Builder::new().name(name).spawn_local(future).unwrap())
|
MustJoinHandle::new(tokio::task::Builder::new().name(name).spawn_local(future).unwrap())
|
||||||
|
} else if #[cfg(feature="rt-tokio")] {
|
||||||
|
let _name = name;
|
||||||
|
MustJoinHandle::new(tokio::task::spawn_local(future))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -80,8 +86,11 @@ cfg_if! {
|
|||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(feature="rt-async-std")] {
|
if #[cfg(feature="rt-async-std")] {
|
||||||
drop(async_std::task::Builder::new().name(name.to_string()).spawn(future).unwrap());
|
drop(async_std::task::Builder::new().name(name.to_string()).spawn(future).unwrap());
|
||||||
} else if #[cfg(feature="rt-tokio")] {
|
} else if #[cfg(all(feature="rt-tokio", feature="tracing"))] {
|
||||||
drop(tokio::task::Builder::new().name(name).spawn(future).unwrap());
|
drop(tokio::task::Builder::new().name(name).spawn(future).unwrap());
|
||||||
|
} else if #[cfg(feature="rt-tokio")] {
|
||||||
|
let _name = name;
|
||||||
|
drop(tokio::task::spawn(future))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -93,8 +102,11 @@ cfg_if! {
|
|||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(feature="rt-async-std")] {
|
if #[cfg(feature="rt-async-std")] {
|
||||||
drop(async_std::task::Builder::new().name(name.to_string()).local(future).unwrap());
|
drop(async_std::task::Builder::new().name(name.to_string()).local(future).unwrap());
|
||||||
} else if #[cfg(feature="rt-tokio")] {
|
} else if #[cfg(all(feature="rt-tokio", feature="tracing"))] {
|
||||||
drop(tokio::task::Builder::new().name(name).spawn_local(future).unwrap());
|
drop(tokio::task::Builder::new().name(name).spawn_local(future).unwrap());
|
||||||
|
} else if #[cfg(feature="rt-tokio")] {
|
||||||
|
let _name = name;
|
||||||
|
drop(tokio::task::spawn_local(future))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -111,8 +123,11 @@ cfg_if! {
|
|||||||
let _name = name;
|
let _name = name;
|
||||||
// async_std::task::Builder blocking doesn't work like spawn_blocking()
|
// async_std::task::Builder blocking doesn't work like spawn_blocking()
|
||||||
async_std::task::spawn_blocking(blocking_task).await
|
async_std::task::spawn_blocking(blocking_task).await
|
||||||
} else if #[cfg(feature="rt-tokio")] {
|
} else if #[cfg(all(feature="rt-tokio", feature="tracing"))] {
|
||||||
tokio::task::Builder::new().name(name).spawn_blocking(blocking_task).unwrap().await.unwrap_or(err_result)
|
tokio::task::Builder::new().name(name).spawn_blocking(blocking_task).unwrap().await.unwrap_or(err_result)
|
||||||
|
} else if #[cfg(feature="rt-tokio")] {
|
||||||
|
let _name = name;
|
||||||
|
tokio::task::spawn_blocking(blocking_task).await.unwrap_or(err_result)
|
||||||
} else {
|
} else {
|
||||||
#[compile_error("must use an executor")]
|
#[compile_error("must use an executor")]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user