]> git.proxmox.com Git - pve-storage.git/commit
file_size_info: cast 'size' and 'used' to integer
authorMira Limbeck <m.limbeck@proxmox.com>
Fri, 18 Feb 2022 08:58:27 +0000 (09:58 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 21 Feb 2022 15:07:30 +0000 (16:07 +0100)
commiteba7935f83d0237a25929cf1e0f63b4c1983fce3
treeab0c14116d63007738f52d34e42515c32a9fc3da
parent7f3085751940a0a6f333bfa8d2ab528303d47406
file_size_info: cast 'size' and 'used' to integer

`qemu-img info --output=json` returns the size and used values as integers in
the JSON format, but the regex match converts them to strings.
As we know they only contain digits, we can simply cast them back to integers
after the regex.

The API requires them to be integers.

Signed-off-by: Mira Limbeck <m.limbeck@proxmox.com>
Reviewed-by: Fabian Ebner <f.ebner@proxmox.com>
PVE/Storage/Plugin.pm