1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/storage/data_stores/main/event_push_actions.py b/synapse/storage/data_stores/main/event_push_actions.py
index 7cd3ae6ae6..14eb79cc42 100644
--- a/synapse/storage/data_stores/main/event_push_actions.py
+++ b/synapse/storage/data_stores/main/event_push_actions.py
@@ -149,6 +149,12 @@ class EventPushActionsWorkerStore(SQLBaseStore):
unread_count += row[0]
if row[1] == 1:
notify_count = row[0]
+ elif row[1] != 0:
+ logger.warning(
+ "Unexpected value %d for column 'notif' in table"
+ " 'event_push_actions'",
+ row[1],
+ )
txn.execute(
"""
|