mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01: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(*)
|
SELECT COUNT(*)
|
||||||
FROM sync_event
|
FROM sync_event
|
||||||
WHERE retries >= 10;
|
WHERE retry_count >= 10;
|
||||||
""",
|
""",
|
||||||
)
|
)
|
||||||
failed_events = list(r)[0][0]
|
failed_events = list(r)[0][0]
|
||||||
|
|
Loading…
Reference in a new issue