Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ff_rate_limiter.go « featureflag « metadata « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bdbe9afa0889b292a9e6b39d83c3d3f5e0a3634 (plain)
1
2
3
4
5
6
7
8
9
10
package featureflag

// RateLimit will enable the rate limiter to reject requests beyond a configured
// rate.
var RateLimit = NewFeatureFlag(
	"rate_limit",
	"v14.10.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/4181",
	false,
)