From 70afb197f1b7209bf85c6a27c249a08f4d389591 Mon Sep 17 00:00:00 2001 From: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Date: Tue, 21 Mar 2023 11:23:44 -0600 Subject: [PATCH] don't attempt docker load if s9pk corrupted (#2236) --- backend/src/install/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/install/mod.rs b/backend/src/install/mod.rs index 72f5c500b..3e588431f 100644 --- a/backend/src/install/mod.rs +++ b/backend/src/install/mod.rs @@ -1449,6 +1449,7 @@ pub fn load_images<'a, P: AsRef + 'a + Send + Sync>( "Error loading docker images from s9pk: {e}" ); tracing::debug!("{e:?}"); + return Ok(()); } }, _ => unreachable!(),