You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
====================================================================================================
append to slice `arr` with non-zero initialized length at https://github.com/frain-dev/convoy/blob/main/worker/task/queue_stuck_event_deliveries.go#L25:11
====================================================================================================
the arr := make([]string, len(evs)) should be arr := make([]string, 0, len(evs))
The text was updated successfully, but these errors were encountered:
I was running github actions to run linter makezero for top github golang repos.
see issues alingse/go-linter-runner#1
and the github actions output https://github.com/alingse/go-linter-runner/actions/runs/9243212476/job/25427061144
the
arr := make([]string, len(evs))
should bearr := make([]string, 0, len(evs))
The text was updated successfully, but these errors were encountered: