mirror of
git://git.proxmox.com/git/pve-common.git
synced 2025-01-08 01:17:37 +03:00
fix #1388: cpuset: sort members numerically
(cherry picked from commit 1cffb285c5
)
This commit is contained in:
parent
7c3d50790a
commit
96745ebcf1
@ -125,7 +125,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