Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ovirt_storage_domain: fix update_check warning_low_space #68505

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,2 @@
bugfixes:
- "ovirt_storage_domain: fix update_check for warning_low_space"
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/ovirt/ovirt_storage_domain.py
Expand Up @@ -651,7 +651,7 @@ def update_check(self, entity):
equal(self.param('critical_space_action_blocker'), entity.critical_space_action_blocker) and
equal(self.param('discard_after_delete'), entity.discard_after_delete) and
equal(self.param('wipe_after_delete'), entity.wipe_after_delete) and
equal(self.param('warning_low_space_indicator'), entity.warning_low_space_indicator)
equal(self.param('warning_low_space'), entity.warning_low_space_indicator)
)


Expand Down