Merge "Inspect all configs in manage-projects"
This commit is contained in:
commit
4b0999f64d
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user