summary refs log tree commit diff
path: root/tests/replication
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2022-11-16 15:25:35 +0000
committerGitHub <noreply@github.com>2022-11-16 15:25:35 +0000
commit618e4ab81b70e37bdb8e9224bd84fcfe4b15bdea (patch)
treeef808471ef6a1696a969a0a6191fe7fd95c9471e /tests/replication
parentRemove redundant types from comments. (#14412) (diff)
downloadsynapse-618e4ab81b70e37bdb8e9224bd84fcfe4b15bdea.tar.xz
Fix an invalid comparison of `UserPresenceState` to `str` (#14393)
Diffstat (limited to 'tests/replication')
-rw-r--r--tests/replication/_base.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/replication/_base.py b/tests/replication/_base.py
index 121f3d8d65..3029a16dda 100644
--- a/tests/replication/_base.py
+++ b/tests/replication/_base.py
@@ -542,8 +542,13 @@ class FakeRedisPubSubProtocol(Protocol):
             self.send("OK")
         elif command == b"GET":
             self.send(None)
+
+        # Connection keep-alives.
+        elif command == b"PING":
+            self.send("PONG")
+
         else:
-            raise Exception("Unknown command")
+            raise Exception(f"Unknown command: {command}")
 
     def send(self, msg):
         """Send a message back to the client."""