summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-02-13 14:29:49 +0000
committerMark Haines <mark.haines@matrix.org>2015-02-13 14:38:24 +0000
commit183b3d4e47dd2fc0e0ca88714d0e0bd415f81736 (patch)
treea81e00d8d68824318991106717815a58c55c9146 /synapse/app
parentMerge branch 'master' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-183b3d4e47dd2fc0e0ca88714d0e0bd415f81736.tar.xz
Prepare the database whenever a connection is opened from the db_pool so that in-memory databases will work
Diffstat (limited to 'synapse/app')
-rwxr-xr-xsynapse/app/homeserver.py14
1 files changed, 4 insertions, 10 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index f5681fac20..6f39819d3a 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -90,7 +90,9 @@ class SynapseHomeServer(HomeServer):
             "sqlite3", self.get_db_name(),
             check_same_thread=False,
             cp_min=1,
-            cp_max=1
+            cp_max=1,
+            cp_openfun=prepare_database,  # Prepare the database for each conn
+                                          # so that :memory: sqlite works
         )
 
     def create_resource_tree(self, web_client, redirect_root_to_web_client):
@@ -252,14 +254,6 @@ def setup():
 
     logger.info("Database prepared in %s.", db_name)
 
-    db_pool = hs.get_db_pool()
-
-    if db_name == ":memory:":
-        # Memory databases will need to be setup each time they are opened.
-        reactor.callWhenRunning(
-            db_pool.runWithConnection, prepare_database
-        )
-
     if config.manhole:
         f = twisted.manhole.telnet.ShellFactory()
         f.username = "matrix"
@@ -270,10 +264,10 @@ def setup():
     bind_port = config.bind_port
     if config.no_tls:
         bind_port = None
+
     hs.start_listening(bind_port, config.unsecure_port)
 
     hs.get_pusherpool().start()
-
     hs.get_state_handler().start_caching()
     hs.get_datastore().start_profiling()