From fc53b3c0650f04320b5c5f09d48b2286df2a7b6b Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:54:09 +1000 Subject: [PATCH] Fix resolver.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- crates/binstalk-downloader/src/remote/resolver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/binstalk-downloader/src/remote/resolver.rs b/crates/binstalk-downloader/src/remote/resolver.rs index d45327f6..1805378c 100644 --- a/crates/binstalk-downloader/src/remote/resolver.rs +++ b/crates/binstalk-downloader/src/remote/resolver.rs @@ -57,7 +57,7 @@ fn get_configs() -> Result<(ResolverConfig, ResolverOpts), BoxError> { } }); - Ok(TokioAsyncResolver::tokio(config, opts)) + Ok((config, opts)) } #[instrument]