From ca616744f83e39773fd29437b46916e082896324 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Fri, 8 Oct 2021 17:17:18 -0600 Subject: [PATCH] fix second deadlock --- appmgr/src/update/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appmgr/src/update/mod.rs b/appmgr/src/update/mod.rs index 54ad365a7..a71faaba0 100644 --- a/appmgr/src/update/mod.rs +++ b/appmgr/src/update/mod.rs @@ -188,7 +188,7 @@ async fn maybe_do_update(ctx: RpcContext) -> Result>, Error let (new_label, _current_label) = query_mounted_label().await?; let (size, download) = download_file( &EosUrl { - base: ctx.eos_registry_url().await?, + base: info.eos_marketplace.clone(), version: latest_version, }, ctx.datadir.join("updates/eos.img"),