diff options
author | Mark Haines <mjark@negativecurvature.net> | 2015-05-18 17:49:59 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2015-05-18 17:49:59 +0100 |
commit | 99914ec9f8d3f59c8a0571d8c9b21be7f56b5d31 (patch) | |
tree | 084839846d7968a0f416dc54627c07404e3b17a9 /synapse/handlers/sync.py | |
parent | Merge pull request #154 from matrix-org/erikj/events_move (diff) | |
parent | Don't bother sorting by the room_stream_ids, it shouldn't matter which order ... (diff) | |
download | synapse-99914ec9f8d3f59c8a0571d8c9b21be7f56b5d31.tar.xz |
Merge pull request #152 from matrix-org/notifier_performance
Notifier performance
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 35a62fda47..bd8c603681 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -92,7 +92,7 @@ class SyncHandler(BaseHandler): result = yield self.current_sync_for_user(sync_config, since_token) defer.returnValue(result) else: - def current_sync_callback(): + def current_sync_callback(before_token, after_token): return self.current_sync_for_user(sync_config, since_token) rm_handler = self.hs.get_handlers().room_member_handler |