diff options
author | Erik Johnston <erik@matrix.org> | 2016-11-16 17:34:44 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-11-16 17:34:44 +0000 |
commit | ed787cf09edd77e39ad9da0b957359214de85287 (patch) | |
tree | befff8fe0284099e1e2df9eccd729ff1eedd4727 /synapse/replication/slave/storage/transactions.py | |
parent | Add initial cut of federation send queue (diff) | |
download | synapse-ed787cf09edd77e39ad9da0b957359214de85287.tar.xz |
Hook up the send queue and create a federation sender worker
Diffstat (limited to 'synapse/replication/slave/storage/transactions.py')
-rw-r--r-- | synapse/replication/slave/storage/transactions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/transactions.py b/synapse/replication/slave/storage/transactions.py index 6f2ba98af5..c459301b76 100644 --- a/synapse/replication/slave/storage/transactions.py +++ b/synapse/replication/slave/storage/transactions.py @@ -25,6 +25,9 @@ class TransactionStore(BaseSlavedStore): ].orig _get_destination_retry_timings = DataStore._get_destination_retry_timings.__func__ + def prep_send_transaction(self, transaction_id, destination, origin_server_ts): + return [] + # For now, don't record the destination rety timings def set_destination_retry_timings(*args, **kwargs): return defer.succeed(None) |