From 48a3e691aef4496102050742bbc3e25f2443ce8f Mon Sep 17 00:00:00 2001 From: Matthias Veit Date: Wed, 4 Dec 2024 11:09:12 +0100 Subject: [PATCH] [fix][chore] Use PostHog default host (#2290) --- fixcore/fixcore/analytics/posthog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixcore/fixcore/analytics/posthog.py b/fixcore/fixcore/analytics/posthog.py index 61fd4da7fd..29f59c11df 100644 --- a/fixcore/fixcore/analytics/posthog.py +++ b/fixcore/fixcore/analytics/posthog.py @@ -27,7 +27,7 @@ def __init__( system_data: SystemData, flush_at: int = 10000, interval: timedelta = timedelta(minutes=1), - host: str = "https://analytics.some.engineering", + host: Optional[str] = None, # was: "https://analytics.some.engineering", client_flush_interval: float = 0.5, client_retries: int = 3, ):