summary refs log tree commit diff
path: root/synapse/storage/databases/main/cache.py
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2023-09-06 11:25:41 -0400
committerPatrick Cloke <patrickc@matrix.org>2023-09-06 11:25:41 -0400
commitec703e7d978565b55be6b8642e9284633d5f43f2 (patch)
tree4da9b54c05d37c794818009d118d73007cad8689 /synapse/storage/databases/main/cache.py
parentMerge remote-tracking branch 'origin/release-v1.92' into matrix-org-hotfixes (diff)
parentMerge remote-tracking branch 'origin/release-v1.91' into release-v1.92 (diff)
downloadsynapse-ec703e7d978565b55be6b8642e9284633d5f43f2.tar.xz
Merge branch 'release-v1.92' into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/databases/main/cache.py')
-rw-r--r--synapse/storage/databases/main/cache.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/synapse/storage/databases/main/cache.py b/synapse/storage/databases/main/cache.py

index 18905e07b6..2fbd389c71 100644 --- a/synapse/storage/databases/main/cache.py +++ b/synapse/storage/databases/main/cache.py
@@ -584,19 +584,6 @@ class CacheInvalidationWorkerStore(SQLBaseStore): else: return 0 - async def stream_introspection_token_invalidation( - self, key: Tuple[Optional[str]] - ) -> None: - """ - Stream an invalidation request for the introspection token cache to workers - - Args: - key: token_id of the introspection token to remove from the cache - """ - await self.send_invalidation_to_replication( - "introspection_token_invalidation", key - ) - @wrap_as_background_process("clean_up_old_cache_invalidations") async def _clean_up_cache_invalidation_wrapper(self) -> None: """