summary refs log tree commit diff
path: root/synapse/storage/appservice.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-03 16:22:35 +0000
committerErik Johnston <erik@matrix.org>2016-02-03 16:22:35 +0000
commitb84d59c5f01914fe53d2673c5c7e372f5c61d088 (patch)
tree05ef68e94da6569320bcf4800f24fbc1ba419aca /synapse/storage/appservice.py
parentPreserve log context over when deferring to thread pool in media repo (diff)
downloadsynapse-b84d59c5f01914fe53d2673c5c7e372f5c61d088.tar.xz
Add descriptions
Diffstat (limited to 'synapse/storage/appservice.py')
-rw-r--r--synapse/storage/appservice.py3
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"))