From: Travis Webb Date: Tue, 26 Aug 2014 19:38:49 +0000 (-0400) Subject: removed signal listeners X-Git-Tag: v4.7.0-beta.2~31^2~9 X-Git-Url: http://git.roojs.org/?a=commitdiff_plain;h=f26578fbbe962d14f4e0bdfae76a3c3384b03049;p=xtuple removed signal listeners --- diff --git a/node-datasource/xt/xt.js b/node-datasource/xt/xt.js index f00146aff..6e28736e5 100644 --- a/node-datasource/xt/xt.js +++ b/node-datasource/xt/xt.js @@ -113,9 +113,5 @@ XT = { }; // give any running process the opportunity to save state // or log as gracefully as possible process.once('exit', _.bind(X.cleanup, X)); - - _.forEach(["SIGINT", "SIGHUP", "SIGQUIT", "SIGKILL", "SIGSEGV", "SIGILL"], function (sig) { - process.once(sig, _.bind(sighandler, X, sig)); - }); }); }());