From 0f53b9b1f6e43a3cd653f2b1a0f416623d1ca513 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Fri, 27 Mar 2020 11:05:40 +1300 Subject: [PATCH] do not capture errors applying autoinstall config outer handling gets this closer to right now --- subiquity/core.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/subiquity/core.py b/subiquity/core.py index 201f82bf..339c9827 100644 --- a/subiquity/core.py +++ b/subiquity/core.py @@ -219,14 +219,7 @@ class Subiquity(Application): async def _apply(self, controller): with controller.context.child("apply_autoinstall_config"): - try: - await controller.apply_autoinstall_config() - except BaseException: - logging.exception( - "%s.apply_autoinstall_config failed", controller.name) - # Obviously need to something better here. - await asyncio.sleep(1800) - raise + await controller.apply_autoinstall_config() controller.autoinstall_applied = True controller.configured() self.next_screen()