Skip to content

Commit

Permalink
MANATEE-188: Fixing make check after commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Fitch committed Dec 3, 2014
1 parent 9db8ae5 commit fe8e669
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions sitter.js
Expand Up @@ -143,18 +143,18 @@ function readConfig(options) {
* writing a shutdown checkpoint, so it currently needs a SIGKILL
* independent of this SIGINT.
*
process.on('SIGINT', function () {
LOG.info('Sitter.main: got SIGINT');
if (!shard) {
process.exit();
}
shard.shutdown(function (err) {
LOG.info({err: err}, 'Sitter.main: done shutdown procedures');
if (err) {
process.abort();
}
process.exit();
});
});
*/
* process.on('SIGINT', function () {
* LOG.info('Sitter.main: got SIGINT');
* if (!shard) {
* process.exit();
* }
* shard.shutdown(function (err) {
* LOG.info({err: err}, 'Sitter.main: done shutdown procedures');
* if (err) {
* process.abort();
* }
* process.exit();
* });
* });
*/
})();

0 comments on commit fe8e669

Please sign in to comment.