summaryrefslogtreecommitdiff
path: root/server/src/leap/soledad/server/_wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/leap/soledad/server/_wsgi.py')
-rw-r--r--server/src/leap/soledad/server/_wsgi.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/server/src/leap/soledad/server/_wsgi.py b/server/src/leap/soledad/server/_wsgi.py
index 37a03ced..f0961eaf 100644
--- a/server/src/leap/soledad/server/_wsgi.py
+++ b/server/src/leap/soledad/server/_wsgi.py
@@ -27,6 +27,7 @@ from leap.soledad.common.backend import SoledadBackend
from leap.soledad.common.couch.state import CouchServerState
from leap.soledad.common.log import getLogger
+from ._config import get_config
__all__ = ['init_couch_state', 'get_sync_resource']
@@ -66,3 +67,12 @@ def get_sync_resource(pool=None):
reactor.callWhenRunning(pool.start)
reactor.addSystemEventTrigger('after', 'shutdown', pool.stop)
return WSGIResource(reactor, pool, wsgi_application)
+
+
+# load configuration from file
+conf = get_config()
+
+# see the comments in application.py recarding why couch state has to be
+# initialized when the reactor is running
+
+reactor.callWhenRunning(init_couch_state, conf)