0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-28 20:48:58 +02:00

Fix use of async/await in media code (#7184)

This commit is contained in:
Patrick Cloke 2020-03-31 09:33:02 -04:00 committed by GitHub
parent 62a7289133
commit 0a7b0882c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
changelog.d/7184.misc Normal file
View file

@ -0,0 +1 @@
Convert some of synapse.rest.media to async/await.

View file

@ -340,7 +340,7 @@ class MediaRepositoryStore(MediaRepositoryBackgroundUpdateStore):
"get_expired_url_cache", _get_expired_url_cache_txn
)
def delete_url_cache(self, media_ids):
async def delete_url_cache(self, media_ids):
if len(media_ids) == 0:
return
@ -349,7 +349,7 @@ class MediaRepositoryStore(MediaRepositoryBackgroundUpdateStore):
def _delete_url_cache_txn(txn):
txn.executemany(sql, [(media_id,) for media_id in media_ids])
return self.db.runInteraction("delete_url_cache", _delete_url_cache_txn)
return await self.db.runInteraction("delete_url_cache", _delete_url_cache_txn)
def get_url_cache_media_before(self, before_ts):
sql = (