summary refs log tree commit diff
path: root/synapse/storage/databases/main/task_scheduler.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage/databases/main/task_scheduler.py')
-rw-r--r--synapse/storage/databases/main/task_scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/task_scheduler.py b/synapse/storage/databases/main/task_scheduler.py

index 1fb3180c3c..9ab120eea9 100644 --- a/synapse/storage/databases/main/task_scheduler.py +++ b/synapse/storage/databases/main/task_scheduler.py
@@ -92,7 +92,7 @@ class TaskSchedulerWorkerStore(SQLBaseStore): if clauses: sql = sql + " WHERE " + " AND ".join(clauses) - sql = sql + "ORDER BY timestamp" + sql = sql + " ORDER BY timestamp" txn.execute(sql, args) return self.db_pool.cursor_to_dict(txn)