Skip to content

Commit

Permalink
Merge pull request #412 from apigee/issue411
Browse files Browse the repository at this point in the history
bug: fixes nil pointer exception in appgroups #411
  • Loading branch information
ssvaidyanathan authored Feb 28, 2024
2 parents f0ceadd + adfd42d commit 4a3ecb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/client/appgroups/appgroups.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func readAppGroupsFile(filePath string) ([]appgroup, error) {
}

func getMapAttributes(attrs []attribute) map[string]string {
var custAttrs map[string]string
custAttrs := make(map[string]string, len(attrs))
for _, a := range attrs {
custAttrs[a.Name] = a.Value
}
Expand Down

0 comments on commit 4a3ecb1

Please sign in to comment.