From 9c4d3872bd37c7936eb4ff86c4917b3a91cd5247 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Wed, 25 May 2022 12:29:10 -0300 Subject: [PATCH] [core] improvement: waiting for the core config generation task to complete --- bauh/view/core/controller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bauh/view/core/controller.py b/bauh/view/core/controller.py index 3e2733ed..6a910506 100755 --- a/bauh/view/core/controller.py +++ b/bauh/view/core/controller.py @@ -432,6 +432,7 @@ class GenericSoftwareManager(SoftwareManager, SettingsController): for t in prepare_tasks: t.join() + create_config.join() tf = time.time() self.logger.info(f'Finished ({tf - ti:.2f} seconds)')