Skip to content

Commit

Permalink
fix: wrong retries column name in monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
cquintana92 committed Sep 25, 2024
1 parent a3bd696 commit a2c5fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit a2c5fb9

Please sign in to comment.