From 12b234119e52342b185dff82c83ced9821a9a5c3 Mon Sep 17 00:00:00 2001 From: jMyles Date: Tue, 27 Feb 2018 15:54:25 -0800 Subject: [PATCH] We don't run Ursula's datastore in a threadpool anymore. --- entry_points/run_ursula_mining_node.py | 1 - 1 file changed, 1 deletion(-) diff --git a/entry_points/run_ursula_mining_node.py b/entry_points/run_ursula_mining_node.py index a93c4a6b5..ed32fae50 100644 --- a/entry_points/run_ursula_mining_node.py +++ b/entry_points/run_ursula_mining_node.py @@ -13,5 +13,4 @@ _URSULA.listen() from hendrix.deploy.base import HendrixDeploy deployer = HendrixDeploy("start", {"wsgi":_URSULA.rest_app, "http_port": 3500}) -deployer.reactor.callWhenRunning(_URSULA.start_datastore_in_threadpool) deployer.run()