Skip to content

Commit

Permalink
Don't show broken hosts in retired list
Browse files Browse the repository at this point in the history
Fixes: #424
Change-Id: I83a4d4ce85503a0b9b6de21b12a5dd9ddfe727f3
  • Loading branch information
kambiz-aghaiepour committed Feb 9, 2023
1 parent 178bde4 commit fcc81ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quads/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def action_version(self):
self.logger.info(self.quads.get_version())

def action_ls_broken(self):
_hosts = Host.objects(broken=True)
_hosts = Host.objects(broken=True, retired=False)
for host in _hosts:
self.logger.info(host.name)

Expand Down

0 comments on commit fcc81ee

Please sign in to comment.