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 `tags` with non-zero initialized length at https://github.com/googleforgames/open-match/blob/main/examples/functions/golang/backfill/mmf/matchfunction.go#L231:11
====================================================================================================
the tags := make([]string, len(tagFilters)) should be tags := make([]string, 0, len(tagFilters))
What happened:
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
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/9242991979/job/25426536505
the
tags := make([]string, len(tagFilters))
should betags := make([]string, 0, len(tagFilters))
What happened:
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Output of
kubectl version
:Cloud Provider/Platform (AKS, GKE, Minikube etc.):
Open Match Release Version:
Install Method(yaml/helm):
The text was updated successfully, but these errors were encountered: