Skip to content

Commit

Permalink
Parameter type grouping
Browse files Browse the repository at this point in the history
Signed-off-by: Dharmit Shah <[email protected]>
  • Loading branch information
dharmit committed Jan 8, 2025
1 parent 1d422cb commit c62c737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resources/common/psa-validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var psaLabels = []string{

// IsUpdatingPSAConfig will indicate whether or not the labels being passed in
// are attempting to update PSA-related configuration.
func IsUpdatingPSAConfig(old map[string]string, new map[string]string) bool {
func IsUpdatingPSAConfig(old, new map[string]string) bool {
for _, label := range psaLabels {
if old[label] != new[label] {
return true
Expand Down

0 comments on commit c62c737

Please sign in to comment.