Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 83d5280

Browse files
committed
Fix remote resource
1 parent f941830 commit 83d5280

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/rest/key/v2/remote_key_resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ async def query_keys(self, request, query, query_remote_on_cache_miss=False):
215215
# ensure the result is sent).
216216
if cache_misses and query_remote_on_cache_miss:
217217
await yieldable_gather_results(
218-
self.fetcher.get_keys,
218+
lambda t: self.fetcher.get_keys(*t),
219219
(
220220
(server_name, list(keys), 0)
221221
for server_name, keys in cache_misses.items()

0 commit comments

Comments
 (0)