outposts: fix error when getting state for non-existent outpost
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
68637cf7cf
commit
80d0b14bb8
|
@ -109,6 +109,7 @@ def before_send(event: dict, hint: dict) -> Optional[dict]:
|
||||||
"django_redis",
|
"django_redis",
|
||||||
"django.security.DisallowedHost",
|
"django.security.DisallowedHost",
|
||||||
"django_redis.cache",
|
"django_redis.cache",
|
||||||
|
"celery.backends.redis",
|
||||||
]:
|
]:
|
||||||
return None
|
return None
|
||||||
LOGGER.debug("sending event to sentry", exc=exc_value, source_logger=event.get("logger", None))
|
LOGGER.debug("sending event to sentry", exc=exc_value, source_logger=event.get("logger", None))
|
||||||
|
|
|
@ -481,6 +481,8 @@ class OutpostState:
|
||||||
def for_outpost(outpost: Outpost) -> list["OutpostState"]:
|
def for_outpost(outpost: Outpost) -> list["OutpostState"]:
|
||||||
"""Get all states for an outpost"""
|
"""Get all states for an outpost"""
|
||||||
keys = cache.keys(f"{outpost.state_cache_prefix}_*")
|
keys = cache.keys(f"{outpost.state_cache_prefix}_*")
|
||||||
|
if not keys:
|
||||||
|
return []
|
||||||
states = []
|
states = []
|
||||||
for key in keys:
|
for key in keys:
|
||||||
instance_uid = key.replace(f"{outpost.state_cache_prefix}_", "")
|
instance_uid = key.replace(f"{outpost.state_cache_prefix}_", "")
|
||||||
|
|
Reference in New Issue