Merge branch 'master' into soon

pull/1/head
ansuz 5 years ago
commit 1240f4a2a5

@ -835,7 +835,14 @@ HK.initializeIndexWorkers = function (Env, config, _cb) {
worker.on('message', function (res) {
if (!res || !res.txid) { return; }
//console.log(res);
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);

Loading…
Cancel
Save