diff options
author | Erik Johnston <erik@matrix.org> | 2018-03-01 15:59:40 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-03-01 15:59:40 +0000 |
commit | 22004b524e5264afb0e883bee486f669ea58833c (patch) | |
tree | 2785add21cca1f724da469bc28b050237dbba68c | |
parent | Calculate stream_ordering_month_ago correctly on workers (diff) | |
download | synapse-22004b524e5264afb0e883bee486f669ea58833c.tar.xz |
Fix comment typo
-rw-r--r-- | synapse/storage/event_push_actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py index c08bebe112..848d8bd728 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py @@ -67,7 +67,7 @@ class EventPushActionsWorkerStore(SQLBaseStore): def __init__(self, db_conn, hs): super(EventPushActionsWorkerStore, self).__init__(db_conn, hs) - # These get correctly ste by _find_stream_orderings_for_times_txn + # These get correctly set by _find_stream_orderings_for_times_txn self.stream_ordering_month_ago = 0 self.stream_ordering_day_ago = 0 |