Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Feb 22, 2024
1 parent ee0d858 commit be19673
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions posthog/session_recordings/realtime_snapshots.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import json
from time import sleep
from typing import Dict, List, Optional
import requests

import structlog
from prometheus_client import Counter

from posthog import settings
from posthog.redis import get_client
from posthog.settings import RECORDINGS_INGESTER_URL
from sentry_sdk import capture_exception

logger = structlog.get_logger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion posthog/settings/session_replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@

REPLAY_EMBEDDINGS_ALLOWED_TEAMS: List[str] = get_list(get_from_env("REPLAY_EMBEDDINGS_ALLOWED_TEAM", "", type_cast=str))

RECORDINGS_INGESTER_URL = get_from_env("RECORDINGS_INGESTER_URL", None)
RECORDINGS_INGESTER_URL = get_from_env("RECORDINGS_INGESTER_URL", "")

0 comments on commit be19673

Please sign in to comment.