Skip to content

Commit

Permalink
fix: filter active workloads on validate env
Browse files Browse the repository at this point in the history
Change-Id: I7bb8d53d57cb3d062be6a91148643f8322623577
  • Loading branch information
grafuls committed Nov 28, 2024
1 parent 5b114a0 commit 6a0d118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quads/tools/validate_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def main(_args, _loop, _logger=None): # pragma: no cover
if _logger:
logger = _logger

_filter = {"validated": False, "provisioned": True, "cloud__ne": "cloud01"}
_filter = {"active": True, "validated": False, "provisioned": True, "cloud__ne": "cloud01"}
assignments = quads.filter_assignments(_filter)

if type(_args) is dict:
Expand Down

0 comments on commit 6a0d118

Please sign in to comment.