diff options
author | David Baker <dave@matrix.org> | 2016-04-20 13:02:01 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-04-20 13:02:01 +0100 |
commit | f63bd4ff4704c9f7b6e23c76720dbd955a60c058 (patch) | |
tree | a503afc43fc4a6ab84190586f267a31c94cb466c /synapse/storage/event_push_actions.py | |
parent | Add single instance & logging stuff (diff) | |
download | synapse-f63bd4ff4704c9f7b6e23c76720dbd955a60c058.tar.xz |
Send a rather basic email notif
Also pep8 fixes
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r-- | synapse/storage/event_push_actions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py index ad512b2f07..f2af8bdb36 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py @@ -202,7 +202,6 @@ class EventPushActionsStore(SQLBaseStore): result = yield self.runInteraction("get_time_of_last_push_action_before", f) defer.returnValue(result[0] if result is not None else None) - @defer.inlineCallbacks def get_latest_push_action_stream_ordering(self): def f(txn): |