diff options
author | Erik Johnston <erik@matrix.org> | 2016-02-03 16:22:35 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-02-03 16:22:35 +0000 |
commit | b84d59c5f01914fe53d2673c5c7e372f5c61d088 (patch) | |
tree | 05ef68e94da6569320bcf4800f24fbc1ba419aca /synapse/storage/appservice.py | |
parent | Preserve log context over when deferring to thread pool in media repo (diff) | |
download | synapse-b84d59c5f01914fe53d2673c5c7e372f5c61d088.tar.xz |
Add descriptions
Diffstat (limited to 'synapse/storage/appservice.py')
-rw-r--r-- | synapse/storage/appservice.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/appservice.py b/synapse/storage/appservice.py index b5aa55c0a3..1100c67714 100644 --- a/synapse/storage/appservice.py +++ b/synapse/storage/appservice.py @@ -276,7 +276,8 @@ class ApplicationServiceTransactionStore(SQLBaseStore): "application_services_state", dict(as_id=service.id), ["state"], - allow_none=True + allow_none=True, + desc="get_appservice_state", ) if result: defer.returnValue(result.get("state")) |