Migrate error handling middleware to express v3
This commit is contained in:
parent
794c3d1afe
commit
0f436d5916
|
@ -32,31 +32,15 @@ exports.gracefulShutdown = function(err) {
|
|||
exports.expressCreateServer = function (hook_name, args, cb) {
|
||||
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){
|
||||
res.send(500);
|
||||
console.error(err.stack ? err.stack : err.toString());
|
||||
exports.gracefulShutdown();
|
||||
});
|
||||
*/
|
||||
|
||||
|
||||
|
||||
// args.app.on('close', function(){
|
||||
// console.log("Exited in a sloppy fashion");
|
||||
// })
|
||||
|
||||
// Handle errors
|
||||
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!' });
|
||||
res.send(500, { error: 'Sorry, something bad happened!' });
|
||||
console.error(err.stack? err.stack : err.toString());
|
||||
exports.gracefulShutdown();
|
||||
next();
|
||||
})
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue