mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
[#381] zfs: ListFilesystemVersions: make list filesystems version invocation deterministic
fixes #381 ref #379
This commit is contained in:
parent
0a2dea05a9
commit
c420f3c909
@ -4,6 +4,7 @@ import (
|
||||
"bytes"
|
||||
"context"
|
||||
"fmt"
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
@ -40,6 +41,7 @@ func (s VersionTypeSet) zfsListTFlagRepr() string {
|
||||
for t := range s {
|
||||
types = append(types, t.String())
|
||||
}
|
||||
sort.StringSlice(types).Sort()
|
||||
return strings.Join(types, ",")
|
||||
}
|
||||
func (s VersionTypeSet) String() string { return s.zfsListTFlagRepr() }
|
||||
|
Loading…
Reference in New Issue
Block a user