mirror of
https://git.proxmox.com/git/pve-common
synced 2025-08-13 19:42:12 +00:00
fix #1388: cpuset: sort members numerically
This commit is contained in:
parent
55c6e2cd32
commit
1cffb285c5
@ -106,7 +106,7 @@ sub has {
|
||||
sub members {
|
||||
my ($self) = @_;
|
||||
|
||||
return sort keys %{$self->{members}};
|
||||
return sort { $a <=> $b } keys %{$self->{members}};
|
||||
}
|
||||
|
||||
sub size {
|
||||
|
Loading…
Reference in New Issue
Block a user