summary refs log tree commit diff
path: root/synapse/replication/tcp/protocol.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-23 13:25:30 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-23 13:25:30 +0000
commitc83cd65ddd86b00e5e85b5fad759f22d28d54f8a (patch)
tree70dc524197328171cb35de0d99b4b4984f73346c /synapse/replication/tcp/protocol.py
parentMerge pull request #6775 from matrix-org/jaywink/worker-docs-tweaks (diff)
parentPropagate cache invalidates from workers to other workers. (#6748) (diff)
downloadsynapse-c83cd65ddd86b00e5e85b5fad759f22d28d54f8a.tar.xz
Propagate cache invalidates from workers to other workers. (#6748)
* commit 'd5275fc55':
  Propagate cache invalidates from workers to other workers. (#6748)
Diffstat (limited to 'synapse/replication/tcp/protocol.py')
-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 131e5acb09..bc1482a9bb 100644 --- a/synapse/replication/tcp/protocol.py +++ b/synapse/replication/tcp/protocol.py
@@ -459,7 +459,7 @@ class ServerReplicationStreamProtocol(BaseReplicationStreamProtocol): await self.streamer.on_remove_pusher(cmd.app_id, cmd.push_key, cmd.user_id) async def on_INVALIDATE_CACHE(self, cmd): - self.streamer.on_invalidate_cache(cmd.cache_func, cmd.keys) + await self.streamer.on_invalidate_cache(cmd.cache_func, cmd.keys) async def on_REMOTE_SERVER_UP(self, cmd: RemoteServerUpCommand): self.streamer.on_remote_server_up(cmd.data)