summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-04-10 16:17:40 +0100
committerErik Johnston <erik@matrix.org>2017-04-10 16:17:40 +0100
commit2e6f5a491040d023b7c4586d393514e775d964a3 (patch)
tree5160227bece4ae78afdd7da211f3475cebf8e908
parentMerge pull request #2102 from DanielDent/add-auth-email (diff)
downloadsynapse-2e6f5a491040d023b7c4586d393514e775d964a3.tar.xz
Typo
-rw-r--r--synapse/replication/tcp/protocol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/protocol.py b/synapse/replication/tcp/protocol.py

index 5770b7125a..9fee2a484b 100644 --- a/synapse/replication/tcp/protocol.py +++ b/synapse/replication/tcp/protocol.py
@@ -403,7 +403,7 @@ class ServerReplicationStreamProtocol(BaseReplicationStreamProtocol): def on_REMOVE_PUSHER(self, cmd): self.streamer.on_remove_pusher(cmd.app_id, cmd.push_key, cmd.user_id) - def onINVALIDATE_CACHE(self, cmd): + def on_INVALIDATE_CACHE(self, cmd): self.streamer.on_invalidate_cache(cmd.cache_func, cmd.keys) @defer.inlineCallbacks