diff --git a/posthog/api/feature_flag.py b/posthog/api/feature_flag.py index 5d1654259eb36..f513e9e74b6a4 100644 --- a/posthog/api/feature_flag.py +++ b/posthog/api/feature_flag.py @@ -65,6 +65,7 @@ class FeatureFlagThrottle(BurstRateThrottle): # Throttle class that's scoped just to the local evaluation endpoint. # This makes the rate limit independent of other endpoints. scope = "feature_flag_evaluations" + rate = "600/minute" class CanEditFeatureFlag(BasePermission):