We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e0e696 commit d09c6b3Copy full SHA for d09c6b3
libs/nodes.js
@@ -166,7 +166,9 @@ module.exports = {
166
else if (a.slots > b.slots) return -1;
167
else if (a.slots < b.slots) return 1;
168
else if (a.queueCount < b.queueCount) return -1;
169
+ else if (a.queueCount > b.queueCount) return 1;
170
else if (a.node.turn < b.node.turn) return -1;
171
+ else if (a.node.turn > b.node.turn) return 1;
172
else return 1;
173
});
174
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ClusterODM",
3
- "version": "1.4.5",
+ "version": "1.4.6",
4
"description": "",
5
"main": "index.js",
6
"scripts": {
0 commit comments