From 5e177b9a5b4bb397c0cbc8428b8c2ac235af985c Mon Sep 17 00:00:00 2001 From: Ted Kaemming <65315+tkaemming@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:04:58 -0800 Subject: [PATCH] Use flat override path by default, see https://github.com/PostHog/charts/pull/623 --- posthog/temporal/batch_exports/squash_person_overrides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/temporal/batch_exports/squash_person_overrides.py b/posthog/temporal/batch_exports/squash_person_overrides.py index 89c85ae0eae0b..6843131c60333 100644 --- a/posthog/temporal/batch_exports/squash_person_overrides.py +++ b/posthog/temporal/batch_exports/squash_person_overrides.py @@ -394,7 +394,7 @@ def clear(self, team_id: int) -> None: "flat": FlatPostgresPersonOverridesManager, } -DEFAULT_POSTGRES_PERSON_OVERRIDES_MANAGER = "mappings" +DEFAULT_POSTGRES_PERSON_OVERRIDES_MANAGER = "flat" assert DEFAULT_POSTGRES_PERSON_OVERRIDES_MANAGER in POSTGRES_PERSON_OVERRIDES_MANAGERS