summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2015-03-09 17:01:19 +0000
committerKegan Dougal <kegan@matrix.org>2015-03-09 17:01:19 +0000
commit21fd84dcb8645a555cc35adb8b2a5a68536b8087 (patch)
treeb400ce68a36fcd01e3f4fca568a43f6ae55e9a36 /synapse/storage
parentFinish appservice txn storage impl and tests. (diff)
downloadsynapse-21fd84dcb8645a555cc35adb8b2a5a68536b8087.tar.xz
Use seconds; start gluing in the AS scheduler into the AS handler.
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index dfce5224a9..6c159b52a0 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -18,7 +18,9 @@ from twisted.internet import defer
 from synapse.util.logutils import log_function
 from synapse.api.constants import EventTypes
 
-from .appservice import ApplicationServiceStore
+from .appservice import (
+    ApplicationServiceStore, ApplicationServiceTransactionStore
+)
 from .directory import DirectoryStore
 from .feedback import FeedbackStore
 from .presence import PresenceStore
@@ -79,7 +81,8 @@ class DataStore(RoomMemberStore, RoomStore,
                 RejectionsStore,
                 FilteringStore,
                 PusherStore,
-                PushRuleStore
+                PushRuleStore,
+                ApplicationServiceTransactionStore
                 ):
 
     def __init__(self, hs):