From 150c8075df5ebba6479234e12c9908b8e1986c38 Mon Sep 17 00:00:00 2001 From: Neil Kakkar Date: Wed, 15 Nov 2023 11:18:21 +0000 Subject: [PATCH] chore: bump up rate limits for flag evaluation (#18592) --- posthog/api/feature_flag.py | 1 + 1 file changed, 1 insertion(+) 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):