diff options
author | Erik Johnston <erik@matrix.org> | 2017-04-10 16:17:40 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-04-10 16:17:40 +0100 |
commit | 2e6f5a491040d023b7c4586d393514e775d964a3 (patch) | |
tree | 5160227bece4ae78afdd7da211f3475cebf8e908 | |
parent | Merge pull request #2102 from DanielDent/add-auth-email (diff) | |
download | synapse-2e6f5a491040d023b7c4586d393514e775d964a3.tar.xz |
Typo
-rw-r--r-- | synapse/replication/tcp/protocol.py | 2 |
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 |