diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-16 15:56:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 15:56:38 -0400 |
commit | 375b0a8a119bb925ca280f050a25a931662fcbb5 (patch) | |
tree | 29e8aa545c741d9dc295e3d687b9bc2341852578 /synapse/module_api | |
parent | Run mypy type checking with the minimum supported Python version (#15602) (diff) | |
download | synapse-375b0a8a119bb925ca280f050a25a931662fcbb5.tar.xz |
Update code to refer to "workers". (#15606)
A bunch of comments and variables are out of date and use obsolete terms.
Diffstat (limited to 'synapse/module_api')
-rw-r--r-- | synapse/module_api/__init__.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/module_api/__init__.py b/synapse/module_api/__init__.py index 2c9d181acf..0e9f366cba 100644 --- a/synapse/module_api/__init__.py +++ b/synapse/module_api/__init__.py @@ -134,7 +134,7 @@ from synapse.util.caches.descriptors import CachedFunction, cached as _cached from synapse.util.frozenutils import freeze if TYPE_CHECKING: - from synapse.app.generic_worker import GenericWorkerSlavedStore + from synapse.app.generic_worker import GenericWorkerStore from synapse.server import HomeServer @@ -237,9 +237,7 @@ class ModuleApi: # TODO: Fix this type hint once the types for the data stores have been ironed # out. - self._store: Union[ - DataStore, "GenericWorkerSlavedStore" - ] = hs.get_datastores().main + self._store: Union[DataStore, "GenericWorkerStore"] = hs.get_datastores().main self._storage_controllers = hs.get_storage_controllers() self._auth = hs.get_auth() self._auth_handler = auth_handler |