[pve-devel] [PATCH container] config list helper: fix return type of vmid for container index API enpoint
Fiona Ebner
f.ebner at proxmox.com
Tue Dec 5 12:35:32 CET 2023
The schema declares it to be an integer. Done in the config_list()
helper, to ensure consistency for the following existing code in
vmstatus():
> my $list = $opt_vmid ? { $opt_vmid => { type => 'lxc', vmid => int($opt_vmid) }} : config_list();
Should not cause any issues for other callers of the helper.
Reported in the community forum:
https://forum.proxmox.com/threads/137628/
Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
src/PVE/LXC.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/PVE/LXC.pm b/src/PVE/LXC.pm
index 7883cfb..4fb4ef2 100644
--- a/src/PVE/LXC.pm
+++ b/src/PVE/LXC.pm
@@ -69,7 +69,7 @@ sub config_list {
my $d = $ids->{$vmid};
next if !$d->{node} || $d->{node} ne $nodename;
next if !$d->{type} || $d->{type} ne 'lxc';
- $res->{$vmid} = { type => 'lxc', vmid => $vmid };
+ $res->{$vmid} = { type => 'lxc', vmid => int($vmid) };
}
return $res;
}
--
2.39.2
More information about the pve-devel
mailing list