Add a description to storage layer's _execute_and_decode()

This commit is contained in:
Paul "LeoNerd" Evans 2015-03-11 17:08:57 +00:00
parent cdb2e045ee
commit 099e4b88d8
5 changed files with 9 additions and 6 deletions

View file

@ -296,7 +296,7 @@ class ApplicationServiceStore(SQLBaseStore):
# }
# ]
services = {}
results = yield self._execute_and_decode(sql)
results = yield self._execute_and_decode("_populate_cache", sql)
for res in results:
as_token = res["token"]
if as_token not in services: