mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 05:07:33 +08:00
fix: wrong retries column name in monitoring (#2233)
This commit is contained in:
parent
a3bd6969ec
commit
20c1145a1d
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue