Skip to content

Commit

Permalink
update deduplicate call
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenGravy authored and github-actions committed Dec 2, 2024
1 parent 2c20115 commit a74371d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/access_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func ValidateAccessRequestClusterNames(cg ClusterGetter, ar types.AccessRequest)
}
if len(invalidClusters) > 0 {
return trace.NotFound("access request contains invalid or unknown cluster names: %v",
strings.Join(utils.Deduplicate(invalidClusters), ", "))
strings.Join(apiutils.Deduplicate(invalidClusters), ", "))
}
return nil
}
Expand Down

0 comments on commit a74371d

Please sign in to comment.