From 3e7f7855a9ecf93893b73d72ee295348912584a0 Mon Sep 17 00:00:00 2001 From: Phani Raj Date: Wed, 11 Sep 2024 16:42:04 -0500 Subject: [PATCH] fix(feature-flags): Remove customer from decide short-circuit block (#24921) Removes this customer's team from the /decide endpoint short circuit settings. --- posthog/settings/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/settings/web.py b/posthog/settings/web.py index 0aa9c1711c135..03b136fe77532 100644 --- a/posthog/settings/web.py +++ b/posthog/settings/web.py @@ -28,7 +28,7 @@ # This is a list of team-ids that are prevented from using the /decide endpoint # until they fix an issue with their feature flags causing instability in posthog. -DECIDE_SHORT_CIRCUITED_TEAM_IDS = [15611] +DECIDE_SHORT_CIRCUITED_TEAM_IDS = [0] # Decide db settings DECIDE_SKIP_POSTGRES_FLAGS = get_from_env("DECIDE_SKIP_POSTGRES_FLAGS", False, type_cast=str_to_bool)