Merge "Inspect all configs in manage-projects"

This commit is contained in:
Zuul 2020-05-04 15:43:38 +00:00 committed by Gerrit Code Review
commit 4b0999f64d
2 changed files with 5 additions and 1 deletions

View File

@ -474,7 +474,7 @@ def main():
try:
# Collect processed errors,if any
process_errors = []
for section in registry.configs_list:
for section in registry.all_configs_list:
project = section['project']
if args.projects and project not in args.projects:
continue

View File

@ -238,3 +238,7 @@ class ProjectsRegistry(object):
@property
def configs_list(self):
return [entry for entry in self._configs_list if not is_retired(entry)]
@property
def all_configs_list(self):
return self._configs_list