Merge branch 'master' into soon

pull/1/head
ansuz 2020-03-24 13:04:25 -04:00
commit 1240f4a2a5
1 changed files with 8 additions and 1 deletions

View File

@ -835,7 +835,14 @@ HK.initializeIndexWorkers = function (Env, config, _cb) {
worker.on('message', function (res) {
if (!res || !res.txid) { return; }
//console.log(res);
response.handle(res.txid, [res.error, res.value]);
try {
response.handle(res.txid, [res.error, res.value]);
} catch (err) {
Env.Log.error("INDEX_WORKER", {
error: err,
response: res,
});
}
});
worker.on('exit', function () {
var idx = workers.indexOf(worker);