postgres: don't warn without tokio_unstable

This commit is contained in:
asonix 2024-01-14 12:48:29 -05:00
parent 7eaa3d8c72
commit c01a3544bc

View file

@ -87,6 +87,7 @@ fn spawn_detach<F: Future + Send + 'static>(
where
F::Output: Send,
{
let _ = name;
Ok(tokio::spawn(future))
}