Skip to content

Commit

Permalink
Merge branch 'ovirt-ansible-collection-2.y' into backports_to_2.y
Browse files Browse the repository at this point in the history
  • Loading branch information
mnecas authored Oct 9, 2023
2 parents 6ee9528 + 090a852 commit 8ebd8f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712)
2 changes: 1 addition & 1 deletion plugins/modules/ovirt_quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def main():
for storage in module.params.get('storages'):
sd_limit_service.add(
limit=otypes.QuotaStorageLimit(
limit=storage.get('size'),
limit=int(storage.get('size')),
storage_domain=search_by_name(
connection.system_service().storage_domains_service(),
storage.get('name')
Expand Down

0 comments on commit 8ebd8f9

Please sign in to comment.