From 97f442a1b8245c54defa5c16e473c03b81173f56 Mon Sep 17 00:00:00 2001 From: do-it Date: Tue, 11 Aug 2026 10:17:59 +0200 Subject: [PATCH] refactor(cli): drop unnecessary Sync bound on prewarm resolve closure --- cli/src/startup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/startup.rs b/cli/src/startup.rs index b2322b50..69cbea18 100644 --- a/cli/src/startup.rs +++ b/cli/src/startup.rs @@ -59,7 +59,7 @@ pub async fn prewarm_domains( resolve: F, ) -> anyhow::Result<()> where - F: Fn(String) -> Fut + Clone + Send + Sync + 'static, + F: Fn(String) -> Fut + Clone + Send + 'static, Fut: Future> + Send + 'static, { // A zero limit would deadlock the spawn loop on the first acquire; treat