summary refs log tree commit diff
path: root/synapse/app/pusher.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-08-30 10:47:27 +0100
committerGitHub <noreply@github.com>2018-08-30 10:47:27 +0100
commit475253a88e09b505eb1a5977985a9e9e93878b26 (patch)
tree0798039957eecc0776489a28484021998b88e954 /synapse/app/pusher.py
parentMerge pull request #3768 from krombel/fix_3445 (diff)
parentFix up tests (diff)
downloadsynapse-475253a88e09b505eb1a5977985a9e9e93878b26.tar.xz
Merge pull request #3764 from matrix-org/rav/close_db_conn_after_init
Make sure that we close db connections opened during init
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r--synapse/app/pusher.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py
index a4fc7e91fa..244c604de9 100644
--- a/synapse/app/pusher.py
+++ b/synapse/app/pusher.py
@@ -78,10 +78,7 @@ class PusherSlaveStore(
 
 
 class PusherServer(HomeServer):
-    def setup(self):
-        logger.info("Setting up.")
-        self.datastore = PusherSlaveStore(self.get_db_conn(), self)
-        logger.info("Finished setting up.")
+    DATASTORE_CLASS = PusherSlaveStore
 
     def remove_pusher(self, app_id, push_key, user_id):
         self.get_tcp_replication().send_remove_pusher(app_id, push_key, user_id)