diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-13 18:14:37 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-13 18:17:09 +0100 |
commit | 59dfbaba3b1ed236a832f8bfb2c6fc92d071f8b6 (patch) | |
tree | 3f5c211931dcab48aa81f67ceca1ece6a11009a1 /synapse/federation/handler.py | |
parent | don't hammer after 403 (diff) | |
download | synapse-59dfbaba3b1ed236a832f8bfb2c6fc92d071f8b6.tar.xz |
when we're talking about backfilling data in federation, call it backfilling - not pagination.
Diffstat (limited to 'synapse/federation/handler.py')
-rw-r--r-- | synapse/federation/handler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/federation/handler.py b/synapse/federation/handler.py index d361f0aaf7..580e591aca 100644 --- a/synapse/federation/handler.py +++ b/synapse/federation/handler.py @@ -75,8 +75,8 @@ class FederationEventHandler(object): @log_function @defer.inlineCallbacks def backfill(self, room_id, limit): - # TODO: Work out which destinations to ask for pagination - # self.replication_layer.paginate(dest, room_id, limit) + # TODO: Work out which destinations to ask for backfill + # self.replication_layer.backfill(dest, room_id, limit) pass @log_function |