diff options
author | Erik Johnston <erik@matrix.org> | 2017-02-21 13:59:25 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-02-21 13:59:25 +0000 |
commit | b7442c3e2b333616093af76ab7848fa82b6490a9 (patch) | |
tree | c54537a995c303e6938d4cebbb26565c4fa7b85a /synapse | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-b7442c3e2b333616093af76ab7848fa82b6490a9.tar.xz |
Store looping call
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/event_push_actions.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py index 52d2bd3ffb..cde141e20d 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py @@ -84,7 +84,9 @@ class EventPushActionsStore(SQLBaseStore): ) self._doing_notif_rotation = False - self._clock.looping_call(self._rotate_notifs, 30 * 60 * 1000) + self._rotate_notif_loop = self._clock.looping_call( + self._rotate_notifs, 30 * 60 * 1000 + ) def _set_push_actions_for_event_and_users_txn(self, txn, event, tuples): """ |