From a7a5b16ae674067dfb3c80dad12c97265f65538d Mon Sep 17 00:00:00 2001 From: michplunkett <5885605+michplunkett@users.noreply.github.com> Date: Fri, 14 Mar 2025 22:45:20 -0500 Subject: [PATCH] Update metrics.py --- app/web/utils/metrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/web/utils/metrics.py b/app/web/utils/metrics.py index 5358cc5..55f17e8 100644 --- a/app/web/utils/metrics.py +++ b/app/web/utils/metrics.py @@ -38,7 +38,8 @@ DATABASE_METRICS_COUNTER = Counter( async def redis_subscribe_worker_exceptions(redis_exceptions_channel: str): - # Subscribe to Redis channel and increment the counter for each exception with info on the exception and task + # Subscribe to Redis channel and increment the counter for each exception + # with info on the exception and task Redis = get_redis() PubSubExceptions = Redis.pubsub() PubSubExceptions.subscribe(redis_exceptions_channel)