Skip to content

Commit

Permalink
Fix component configuration retry logic if unused components exist
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga committed Dec 20, 2023
1 parent 2e59259 commit db868fd
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/batou/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit db868fd

Please sign in to comment.