From 5380434ffc083b06d3762f5ed76838086736da0a Mon Sep 17 00:00:00 2001 From: Eli Kogan-Wang Date: Wed, 20 Dec 2023 15:26:51 +0100 Subject: [PATCH] Fix component configuration retry logic if unused components exist --- src/batou/environment.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/batou/environment.py b/src/batou/environment.py index 1be15b8d..103376da 100644 --- a/src/batou/environment.py +++ b/src/batou/environment.py @@ -528,10 +528,9 @@ def configure(self): unprepared_components, root ) ) - if not exceptions: - # configured this component successfully - # we won't have to retry it later - continue + # configured this component successfully + # we won't have to retry it later + continue retry.add(root) retry.update(self.resources.dirty_dependencies)