0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-22 04:28:21 +02:00

Cached functions must be accessed through the dict

This commit is contained in:
David Baker 2016-05-10 19:05:22 +02:00
parent 35b6e6d2a8
commit 89b5ef7c4b

View file

@ -23,6 +23,7 @@ from synapse.config.logger import LoggingConfig
from synapse.config.emailconfig import EmailConfig
from synapse.http.site import SynapseSite
from synapse.metrics.resource import MetricsResource, METRICS_PREFIX
from synapse.storage.events import EventsStore
from synapse.replication.slave.storage.events import SlavedEventStore
from synapse.replication.slave.storage.pushers import SlavedPusherStore
from synapse.replication.slave.storage.receipts import SlavedReceiptsStore
@ -132,7 +133,7 @@ class PusherSlaveStore(
)
_get_state_group_for_events = (
DataStore._get_state_group_for_events.__func__
EventsStore.__dict__["_get_state_group_for_events"]
)