From fe18352a4c74c9bce74df6d8de110851735e5f27 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 5 May 2016 04:56:57 -0700 Subject: [PATCH] no default timeout. --- lib/bcoin/workers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/workers.js b/lib/bcoin/workers.js index 4c4facfb..44652aa4 100644 --- a/lib/bcoin/workers.js +++ b/lib/bcoin/workers.js @@ -38,7 +38,7 @@ function Workers(options) { this.uid = 0; this.size = options.size || Workers.CORES; - this.timeout = options.timeout || 60000; + this.timeout = options.timeout || -1; this.children = []; }