removed signal listeners
authorTravis Webb <me@traviswebb.com>
Tue, 26 Aug 2014 19:38:49 +0000 (15:38 -0400)
committerTravis Webb <me@traviswebb.com>
Tue, 26 Aug 2014 19:38:49 +0000 (15:38 -0400)
node-datasource/xt/xt.js

index f00146a..6e28736 100644 (file)
@@ -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));
-    });
   });
 }());