error handling and close is removed in express 3
This commit is contained in:
parent
d44c7f0bb5
commit
603f251824
|
@ -16,9 +16,6 @@ exports.gracefulShutdown = function(err) {
|
||||||
|
|
||||||
console.log("graceful shutdown...");
|
console.log("graceful shutdown...");
|
||||||
|
|
||||||
//stop the http server
|
|
||||||
exports.app.close();
|
|
||||||
|
|
||||||
//do the db shutdown
|
//do the db shutdown
|
||||||
db.db.doShutdown(function() {
|
db.db.doShutdown(function() {
|
||||||
console.log("db sucessfully closed.");
|
console.log("db sucessfully closed.");
|
||||||
|
@ -35,11 +32,33 @@ exports.gracefulShutdown = function(err) {
|
||||||
exports.expressCreateServer = function (hook_name, args, cb) {
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
||||||
exports.app = args.app;
|
exports.app = args.app;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
Below breaks Express 3, commented out to allow express 3o to run. For mroe details see:
|
||||||
|
https://github.com/visionmedia/express/wiki/Migrating-from-2.x-to-3.x
|
||||||
|
/*
|
||||||
|
/*
|
||||||
args.app.error(function(err, req, res, next){
|
args.app.error(function(err, req, res, next){
|
||||||
res.send(500);
|
res.send(500);
|
||||||
console.error(err.stack ? err.stack : err.toString());
|
console.error(err.stack ? err.stack : err.toString());
|
||||||
exports.gracefulShutdown();
|
exports.gracefulShutdown();
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// args.app.on('close', function(){
|
||||||
|
// console.log("Exited in a sloppy fashion");
|
||||||
|
// })
|
||||||
|
|
||||||
|
args.app.use(function(err, req, res, next){
|
||||||
|
// if an error occurs Connect will pass it down
|
||||||
|
// through these "error-handling" middleware
|
||||||
|
// allowing you to respond however you like
|
||||||
|
res.send(500, { error: 'Sorry something bad happened!' });
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
//connect graceful shutdown with sigint and uncaughtexception
|
//connect graceful shutdown with sigint and uncaughtexception
|
||||||
if(os.type().indexOf("Windows") == -1) {
|
if(os.type().indexOf("Windows") == -1) {
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"socket.io" : "0.9.x",
|
"socket.io" : "0.9.x",
|
||||||
"ueberDB" : "0.1.7",
|
"ueberDB" : "0.1.7",
|
||||||
"async" : "0.1.x",
|
"async" : "0.1.x",
|
||||||
"express" : "2.5.x",
|
"express" : "3.x",
|
||||||
"connect" : "1.x",
|
"connect" : "1.x",
|
||||||
"clean-css" : "0.3.2",
|
"clean-css" : "0.3.2",
|
||||||
"uglify-js" : "1.2.5",
|
"uglify-js" : "1.2.5",
|
||||||
|
|
Loading…
Reference in New Issue