no default timeout.

This commit is contained in:
Christopher Jeffrey 2016-05-05 04:56:57 -07:00
parent cb29feada8
commit fe18352a4c
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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 = [];
}