summary refs log tree commit diff
path: root/synapse/replication/slave/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-06-21 13:51:38 +0100
committerErik Johnston <erik@matrix.org>2017-06-21 13:57:49 +0100
commit8177563ebed92382a3d08943c8a1a8c5f3c28654 (patch)
tree9553c21d595c00dcd78015fba131d0299973b1d5 /synapse/replication/slave/storage
parentDon't work out users who share room with appservice users (diff)
downloadsynapse-8177563ebed92382a3d08943c8a1a8c5f3c28654.tar.xz
Fix for workers
Diffstat (limited to 'synapse/replication/slave/storage')
-rw-r--r--synapse/replication/slave/storage/appservice.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/appservice.py b/synapse/replication/slave/storage/appservice.py

index a374f2f1a2..73048327c5 100644 --- a/synapse/replication/slave/storage/appservice.py +++ b/synapse/replication/slave/storage/appservice.py
@@ -38,3 +38,6 @@ class SlavedApplicationServiceStore(BaseSlavedStore): get_appservice_state = DataStore.get_appservice_state.__func__ set_appservice_last_pos = DataStore.set_appservice_last_pos.__func__ set_appservice_state = DataStore.set_appservice_state.__func__ + get_if_app_services_interested_in_user = ( + DataStore.get_if_app_services_interested_in_user.__func__ + )