do not capture errors applying autoinstall config

outer handling gets this closer to right now
This commit is contained in:
Michael Hudson-Doyle 2020-03-27 11:05:40 +13:00
parent caf713d289
commit 0f53b9b1f6
1 changed files with 1 additions and 8 deletions

View File

@ -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()