Skip to content

Commit

Permalink
azurerm_eventgrid_event_subscription - fix crash when flattening `a…
Browse files Browse the repository at this point in the history
…dvanced_filter` (#28110)
  • Loading branch information
mbfrahry authored Nov 27, 2024
1 parent 7560cf6 commit aebe53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/eventgrid/event_subscription_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ func flattenRangeValues(inputKey *string, inputValues *[][]any) map[string]any {
values := make([]any, 0)
if inputValues != nil {
for _, item := range *inputValues {
values = append(values, item...)
values = append(values, item) // nolint: asasalint
}
}

Expand Down

0 comments on commit aebe53f

Please sign in to comment.