From 0966ec124b5dc4363c619f2d4372ae84165fe97d Mon Sep 17 00:00:00 2001 From: tripathyr Date: Tue, 25 May 2021 14:58:20 +0530 Subject: [PATCH] Stop the stoppage of service --- lib/node.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node.js b/lib/node.js index 845e1e1a..eac6d3a3 100644 --- a/lib/node.js +++ b/lib/node.js @@ -204,7 +204,8 @@ Node.prototype.start = function(callback) { Node.prototype.stop = function(callback) { log.info('Beginning shutdown'); - var self = this; +//Flosight Error fix by RanchiMall May 25 2021: Node must not stop under any circumstance + /* var self = this; var services = this._getServiceOrder(this._unloadedServices).reverse(); this.stopping = true; @@ -226,7 +227,7 @@ Node.prototype.stop = function(callback) { if (callback) { callback(); } - }); + }); */ }; module.exports = Node;