Merge "Inspect all configs in manage-projects"
This commit is contained in:
commit
4b0999f64d
@ -474,7 +474,7 @@ def main():
|
|||||||
try:
|
try:
|
||||||
# Collect processed errors,if any
|
# Collect processed errors,if any
|
||||||
process_errors = []
|
process_errors = []
|
||||||
for section in registry.configs_list:
|
for section in registry.all_configs_list:
|
||||||
project = section['project']
|
project = section['project']
|
||||||
if args.projects and project not in args.projects:
|
if args.projects and project not in args.projects:
|
||||||
continue
|
continue
|
||||||
|
@ -238,3 +238,7 @@ class ProjectsRegistry(object):
|
|||||||
@property
|
@property
|
||||||
def configs_list(self):
|
def configs_list(self):
|
||||||
return [entry for entry in self._configs_list if not is_retired(entry)]
|
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