From 20c1145a1d105d7b03f105b81ef28392e2bdd73f Mon Sep 17 00:00:00 2001 From: Carlos Quintana <74399022+cquintana92@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:33:14 +0200 Subject: [PATCH] fix: wrong retries column name in monitoring (#2233) --- monitoring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring.py b/monitoring.py index e15e977a..ed90ea46 100644 --- a/monitoring.py +++ b/monitoring.py @@ -131,7 +131,7 @@ def log_failed_events(): """ SELECT COUNT(*) FROM sync_event - WHERE retries >= 10; + WHERE retry_count >= 10; """, ) failed_events = list(r)[0][0]