From 8b710ab2875eff324292472848d637baceed5cab Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Fri, 10 May 2024 13:41:13 +0200 Subject: [PATCH] Linked GH issue in comment --- sentry_sdk/integrations/django/caching.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sentry_sdk/integrations/django/caching.py b/sentry_sdk/integrations/django/caching.py index 9434a0705e..74be70cd09 100644 --- a/sentry_sdk/integrations/django/caching.py +++ b/sentry_sdk/integrations/django/caching.py @@ -128,6 +128,7 @@ def _get_address_port(settings): location = settings.get("LOCATION") # TODO: location can also be an array of locations # see: https://docs.djangoproject.com/en/5.0/topics/cache/#redis + # GitHub issue: https://github.com/getsentry/sentry-python/issues/3062 if isinstance(location, str): if ":" in location: address, port = location.rsplit(":", 1)