Skip to content

Commit

Permalink
fix cluster access issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jamyct committed Jan 3, 2025
1 parent e24440e commit fc9602c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/common/trafficmanager/validator/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
cmpConditionOptions,
cmpopts.IgnoreFields(fleetnetv1alpha1.TrafficManagerEndpointStatus{}, "Name"), // ignore the generated endpoint name
cmpopts.SortSlices(func(s1, s2 fleetnetv1alpha1.TrafficManagerEndpointStatus) bool {
return s1.Cluster.Cluster < s2.Cluster.Cluster
return s1.From.Cluster < s2.From.Cluster
}),
}
)
Expand Down

0 comments on commit fc9602c

Please sign in to comment.