From c01a3544bc77b98feaf418e843e7be9e84460fbe Mon Sep 17 00:00:00 2001 From: asonix Date: Sun, 14 Jan 2024 12:48:29 -0500 Subject: [PATCH] postgres: don't warn without tokio_unstable --- jobs-postgres/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/jobs-postgres/src/lib.rs b/jobs-postgres/src/lib.rs index b6c0d41..12f82b5 100644 --- a/jobs-postgres/src/lib.rs +++ b/jobs-postgres/src/lib.rs @@ -87,6 +87,7 @@ fn spawn_detach( where F::Output: Send, { + let _ = name; Ok(tokio::spawn(future)) }