From 6ad7d359638f6f320b950ec463e5e2258aecb5e4 Mon Sep 17 00:00:00 2001 From: Justin Langston Date: Wed, 9 Aug 2017 11:51:38 -0400 Subject: [PATCH] workers should generally be enabled, should be fixed in bcoin if recurrant issue --- lib/services/p2p/bcoin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/p2p/bcoin.js b/lib/services/p2p/bcoin.js index 57a5e0e1..a24d7375 100644 --- a/lib/services/p2p/bcoin.js +++ b/lib/services/p2p/bcoin.js @@ -45,7 +45,7 @@ Bcoin.prototype._getConfig = function(options) { logLevel: 'info', port: options.port, persistent: true, - workers: false + workers: true }; if (options.prefix) { config.prefix = options.prefix;