Skip to content

Commit

Permalink
Merge pull request #9093 from rook/mergify/bp/release-1.7/pr-9091
Browse files Browse the repository at this point in the history
rbd-mirror: use a sorted list for peer token content (backport #9091)
  • Loading branch information
leseb committed Nov 4, 2021
2 parents 28dd20c + a0eed53 commit 648bb48
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 648bb48

Please sign in to comment.