diff options
author | Erik Johnston <erik@matrix.org> | 2017-05-31 11:59:36 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-05-31 11:59:36 +0100 |
commit | 168524543f70f7c3dc113b21fc704af65d832bf8 (patch) | |
tree | 0fa74ead6a952a4496b8498411c2bca83c240a2b /synapse | |
parent | Start later (diff) | |
download | synapse-168524543f70f7c3dc113b21fc704af65d832bf8.tar.xz |
Add call later
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/user_directory.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/handlers/user_directory.py b/synapse/handlers/user_directory.py index 87c467f096..e9488ce554 100644 --- a/synapse/handlers/user_directory.py +++ b/synapse/handlers/user_directory.py @@ -38,6 +38,8 @@ class UserDirectoyHandler(object): self._is_processing = False + self.clock.call_later(0, self.notify_new_event) + @defer.inlineCallbacks def notify_new_event(self): if self._is_processing: |