Skip to content

Commit

Permalink
Merge pull request #9091 from leseb/fix-9076
Browse files Browse the repository at this point in the history
rbd-mirror: use a sorted list for peer token content
  • Loading branch information
leseb committed Nov 3, 2021
2 parents cbe29ba + 8cb6cdc commit 01bb0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/daemon/ceph/client/mirror.go
Expand Up @@ -371,7 +371,7 @@ func CreateRBDMirrorBootstrapPeerWithoutPool(context *clusterd.Context, clusterI
ClusterFSID: clusterInfo.FSID,
ClientID: rbdMirrorPeerKeyringID,
Key: key,
MonHost: strings.Join(mons.UnsortedList(), ","),
MonHost: strings.Join(mons.List(), ","),
Namespace: clusterInfo.Namespace,
}

Expand Down

0 comments on commit 01bb0c1

Please sign in to comment.