diff --git a/posthog/settings/temporal.py b/posthog/settings/temporal.py index 140fa36dd44f9..b59037b5bbee6 100644 --- a/posthog/settings/temporal.py +++ b/posthog/settings/temporal.py @@ -19,8 +19,7 @@ BATCH_EXPORT_HTTP_BATCH_SIZE: int = 1000 UNCONSTRAINED_TIMESTAMP_TEAM_IDS: list[str] = get_list(os.getenv("UNCONSTRAINED_TIMESTAMP_TEAM_IDS", "")) -UNCONSTRAINED_TIMESTAMP_TEAM_IDS = get_list(os.getenv("UNCONSTRAINED_TIMESTAMP_TEAM_IDS", "")) -DEFAULT_TIMESTAMP_LOOKBACK_DAYS = 4 +DEFAULT_TIMESTAMP_LOOKBACK_DAYS = 7 # Comma separated list of overrides in the format "team_id:lookback_days" OVERRIDE_TIMESTAMP_TEAM_IDS: dict[int, int] = dict( [map(int, o.split(":")) for o in os.getenv("OVERRIDE_TIMESTAMP_TEAM_IDS", "").split(",") if o] # type: ignore