diff options
author | Erik Johnston <erik@matrix.org> | 2020-04-29 16:23:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 16:23:08 +0100 |
commit | 37f6823f5b91f27b9dd8de8fc0e52d5ea889647c (patch) | |
tree | df9a392c3b1d4470185dcfb90e63c1005ef4e4bb /tests/replication/slave | |
parent | Don't relay REMOTE_SERVER_UP cmds to same conn. (#7352) (diff) | |
download | synapse-37f6823f5b91f27b9dd8de8fc0e52d5ea889647c.tar.xz |
Add instance name to RDATA/POSITION commands (#7364)
This is primarily for allowing us to send those commands from workers, but for now simply allows us to ignore echoed RDATA/POSITION commands that we sent (we get echoes of sent commands when using redis). Currently we log a WARNING on the master process every time we receive an echoed RDATA.
Diffstat (limited to 'tests/replication/slave')
-rw-r--r-- | tests/replication/slave/storage/_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/replication/slave/storage/_base.py b/tests/replication/slave/storage/_base.py index 395c7d0306..1615dfab5e 100644 --- a/tests/replication/slave/storage/_base.py +++ b/tests/replication/slave/storage/_base.py @@ -57,6 +57,7 @@ class BaseSlavedStoreTestCase(unittest.HomeserverTestCase): # We now do some gut wrenching so that we have a client that is based # off of the slave store rather than the main store. self.replication_handler = ReplicationCommandHandler(self.hs) + self.replication_handler._instance_name = "worker" self.replication_handler._replication_data_handler = ReplicationDataHandler( self.slaved_store ) |