cluster-client
Advanced tools
Comparing version 1.5.2 to 1.5.3
1.5.3 / 2017-03-17 | ||
================== | ||
* fix: make sure subscribe listener triggered asynchronized (#19) | ||
1.5.2 / 2017-03-14 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -103,3 +103,5 @@ 'use strict'; | ||
const result = transcode.decode(req.data); | ||
listener(result); | ||
process.nextTick(() => { | ||
listener(result); | ||
}); | ||
}, | ||
@@ -106,0 +108,0 @@ }, |
{ | ||
"name": "cluster-client", | ||
"version": "1.5.2", | ||
"version": "1.5.3", | ||
"description": "Sharing Connection among Multi-Process Nodejs", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
65247
1688