Skip to content

Commit

Permalink
Fixing issue oVirt#709
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Reimer committed Jul 3, 2023
1 parent 9befbcf commit e70fa41
Showing 1 changed file with 1 addition and 1 deletion.
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 e70fa41

Please sign in to comment.