mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:06:07 -04:00
Add a description to storage layer's _execute_and_decode()
This commit is contained in:
parent
cdb2e045ee
commit
099e4b88d8
5 changed files with 9 additions and 6 deletions
|
@ -85,7 +85,9 @@ class KeyStore(SQLBaseStore):
|
|||
" AND key_id in (" + ",".join("?" for key_id in key_ids) + ")"
|
||||
)
|
||||
|
||||
rows = yield self._execute_and_decode(sql, server_name, *key_ids)
|
||||
rows = yield self._execute_and_decode("get_server_verify_keys", sql,
|
||||
server_name, *key_ids
|
||||
)
|
||||
|
||||
keys = []
|
||||
for row in rows:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue