From ebf573fa42fae651fd1073d6fcd399891071ce85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Wed, 13 Oct 2021 13:48:29 -0700 Subject: [PATCH] Revert "add config `update.unbuffered`" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b1350a668c5e1aa6d076aee77f69aeab77e9ea5c. Parallel updates are a great feature, but they break color.ui and attempts to fix that have caused unexpected exceptions to be thrown on Windows, so we need to back the feature out for now until we can get it done in a way that works with both color and Windows. Signed-off-by: Martí Bolívar --- src/west/app/project.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/west/app/project.py b/src/west/app/project.py index 4638b19..f01f5ff 100644 --- a/src/west/app/project.py +++ b/src/west/app/project.py @@ -832,9 +832,6 @@ class Update(_ProjectCommand): fallback=None) self.sync_submodules = config.getboolean('update', 'sync-submodules', fallback=True) - self.unbuffered = args.unbuffered or config.getboolean('update', - 'unbuffered', - fallback=False) self.group_filter: List[str] = [] @@ -894,7 +891,7 @@ class Update(_ProjectCommand): # XXX: this is not picklable self.parser = None - if self.unbuffered: + if self.args.unbuffered: logdir = None logdir_name = None else: