mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Make RED.stop as per @knollery suggestion.
This commit is contained in:
parent
1fb185d081
commit
e60120f7c9
4
red.js
4
red.js
@ -71,7 +71,7 @@ process.on('uncaughtException',function(err) {
|
||||
});
|
||||
|
||||
process.on('SIGINT', function () {
|
||||
RED.nodes.closedown();
|
||||
console.log("Exiting Node-RED. Thank you.");
|
||||
RED.stop();
|
||||
util.log('[red] Exiting Node-RED. Thank you.');
|
||||
process.exit();
|
||||
});
|
||||
|
@ -33,10 +33,10 @@ var RED = {
|
||||
},
|
||||
|
||||
start: server.start,
|
||||
|
||||
nodes: nodes,
|
||||
library: library,
|
||||
events: events
|
||||
events: events,
|
||||
stop: nodes.closedown,
|
||||
};
|
||||
|
||||
RED.__defineGetter__("app", function() { return server.app });
|
||||
|
Loading…
Reference in New Issue
Block a user