From 1edc88f14bf4c69e3ebaf182f033c12b80aa5cf9 Mon Sep 17 00:00:00 2001 From: tripathyr Date: Wed, 26 May 2021 19:54:53 +0530 Subject: [PATCH] Update node.js --- lib/node.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/node.js b/lib/node.js index eac6d3a3..28c9120d 100644 --- a/lib/node.js +++ b/lib/node.js @@ -204,8 +204,7 @@ Node.prototype.start = function(callback) { Node.prototype.stop = function(callback) { log.info('Beginning shutdown'); -//Flosight Error fix by RanchiMall May 25 2021: Node must not stop under any circumstance - /* var self = this; + var self = this; var services = this._getServiceOrder(this._unloadedServices).reverse(); this.stopping = true; @@ -227,7 +226,7 @@ Node.prototype.stop = function(callback) { if (callback) { callback(); } - }); */ + }); }; module.exports = Node;