diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-10-14 23:25:23 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-10-14 23:38:14 +0100 |
commit | 4182bb812f21d7231ff0efc5e93e5f2e88f6605e (patch) | |
tree | 20bb829abf77fd9d8ee311fa45dd153a68710b4a /synapse/replication | |
parent | Rename Cache->DeferredCache (diff) | |
download | synapse-4182bb812f21d7231ff0efc5e93e5f2e88f6605e.tar.xz |
move DeferredCache into its own module
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/client_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/client_ips.py b/synapse/replication/slave/storage/client_ips.py index 40ea78a353..4b0ea0cc01 100644 --- a/synapse/replication/slave/storage/client_ips.py +++ b/synapse/replication/slave/storage/client_ips.py @@ -15,7 +15,7 @@ from synapse.storage.database import DatabasePool from synapse.storage.databases.main.client_ips import LAST_SEEN_GRANULARITY -from synapse.util.caches.descriptors import DeferredCache +from synapse.util.caches.deferred_cache import DeferredCache from ._base import BaseSlavedStore |