diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-11 17:08:57 +0000 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-03-11 17:08:57 +0000 |
commit | 099e4b88d8053fbe5a661706a92a50e2c25f4dd6 (patch) | |
tree | 4b970847fae6525a9a77025fa412bb9773eb84d3 /synapse/storage/appservice.py | |
parent | Again, underscore, not hyphen (diff) | |
download | synapse-099e4b88d8053fbe5a661706a92a50e2c25f4dd6.tar.xz |
Add a description to storage layer's _execute_and_decode()
Diffstat (limited to 'synapse/storage/appservice.py')
-rw-r--r-- | synapse/storage/appservice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/appservice.py b/synapse/storage/appservice.py index e30265750a..850676ce6c 100644 --- a/synapse/storage/appservice.py +++ b/synapse/storage/appservice.py @@ -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: |