From 1fefbe1c749d9cf958ed704f621622eb595dc9bc Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Tue, 30 Apr 2019 11:18:53 +1200 Subject: [PATCH] do not show a block device scan failure until we get to filesystem screen anyway want people to be offered the snap update --- subiquity/controllers/filesystem.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subiquity/controllers/filesystem.py b/subiquity/controllers/filesystem.py index 3e8a26aa..b3a36fcf 100644 --- a/subiquity/controllers/filesystem.py +++ b/subiquity/controllers/filesystem.py @@ -95,7 +95,8 @@ class FilesystemController(BaseController): self._reprobe() else: self._probe_state = ProbeState.FAILED - self.default() + if self.showing: + self.default() else: self.model.load_probe_data(storage) self._probe_state = ProbeState.DONE